body {
    position: relative;
    background-color: #eee; /* fallback color */
}

.container {
    background: #fff;
    width: 50%;
    max-width: 50%;
    min-height: 400px;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 16px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 8px 0px;
    display: grid;
    grid-template-rows: 3fr 7fr;
    padding: 2em 2em;
    overflow: hidden;
}

#sso_btn {
    background-color: #1b3768;
}

.divider-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-line {
    width: 1px;
    height: 100%;
    min-height: 1px;
    background-color: #ccc;
}

.divider-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    padding: 0 10px;
    font-weight: bold;
    color: #666;
}


.pace-logo {
    /*    position: relative;
    top: 5%;
    left: 50%;*/
    /*transform: translateX(-50%);*/
    display: block;
    margin: 0 auto;
    width: 50%;
    padding: 0 0.5em;
    align-content: center;
}

.login-box {
    width: 60%;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 16px;
    align-content: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 992px) {
    .container {
        width: 90%;
        max-width: 400px;
        box-shadow: none;
        padding: 1.5em 1em;
    }

    .login-box {
        width: 90%;
    }
}

@media (max-width: 1200px) {
    .divider-line {
        width: 100%;
        height: 1px !important;
    }
}

.form-group {
    position: relative;
    border-bottom: 1px solid #888;
    display: flex;
    justify-content: start;
}

    .form-group label {
        padding: 0.75em;
    }

    .form-group .c-form-control {
        border: none;
        padding: 0.75em;
        outline: none;
        width: 100%;
        background: none;
    }

.c-form-control::placeholder {
    color: #888; /* Default placeholder color */
    opacity: 1;
}

.form-group:focus-within {
    border-bottom: 1px solid #000; /* Focus color */
}

.c-form-control:focus::placeholder {
    color: #000; /* Color when focused */
    opacity: 1;
}
