:root {
    --fast-color: #1e3e7c;
}

body {
    background-color: var(--fast-color);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
   -webkit-text-fill-color: #000;
   -webkit-box-shadow: 0 0 0px 1000px #fff inset;
   box-shadow: 0 0 0px 1000px #fff inset;
   transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
    -webkit-text-fill-color: #000;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

.form-check-input:checked {
    background-color: var(--fast-color);
    border-color: var(--fast-color);
}

.login-container {
    padding: 0 0.3rem;
    max-width: 400px;
    width: 100%;
}

.remember-me {
    display: flex;
    align-items: center;
}

.login-btn {
    border-radius: 5px;
    height: 2.5rem;
    border: none;
    color: white;
    background-color: var(--fast-color);
}

.login-btn:hover {
    background-color: #3f62a3;
    font-weight: 500;
}

.login-label {
    font-size: 13px;

}

#userId:focus,
#password:focus {
    outline: 2px solid var(--fast-color);
}

#userId:focus + .user-id-label,
#password:focus + .user-pw-label {
    color: var(--fast-color);
}

.message {
    font-weight: 500;
    padding: 0.3rem 0;
}

.reset-info .message {
    color: var(--fast-color) !important;
}

.rspw {
    cursor: pointer;
    width: 100%;
    display: block;
    background-color: var(--fast-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.reset-info {
    display: flex;
    margin: 5rem 0 !important;
    justify-content: center;
}

input::placeholder {
    font-size: 13px;
}