.login-page h1,
.login-page h2 {
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1;
}
.login-page .form-container {
    max-width: 500px;
    margin: 32px auto;
}
.login-page .form-container .form-floating {
    margin-bottom: 24px;
}
.login-page .form-container input.form-control {
    border: 1px solid #b4b4b4;
    border-radius: 4px;
    color: #000000;
    font-size: 17px;
    padding: 8px 16px;
    height: 40px;
}
.login-page .form-container .form-floating >label {
    display: flex;
    align-items: center;
}
.login-page .form-container .form-floating>label {
    color: #b4b4b4;
    font-size: 10px;    
    padding: 8px 16px;
}
.login-page .form-container button.btn.submit-btn {
    color: #FFFFFF;
    background-color: #000000;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    min-height: 48px;
    width: 100%;
}
.login-page .form-container button.btn.submit-btn:hover {
    opacity: 0.75;
}
.login-page .info-text {
    font-size: 14px;
}
.login-page .forgot-pwd {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 16px;
    text-decoration: underline;
}
.login-page .google-login {
    display: flex;
    width: 100%;
    margin-top: 40px;
    text-align: center;
    height: 40px;
    border: 1px solid #000000;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
}
.login-page .google-login i {
    margin-right: 8px;
}
.login-page .google-login:hover {
    opacity: 0.75;
}

.login-page .label.error
{
    text-align: center;
    line-height: 20px;
    margin-bottom: 20px;
    color: #F00;
}