html, body {
    height: 100vh;
}

.login-form-content {
    background-color: rgb(235, 235, 235);
    min-height: 100% !important;
    width: 100%;
}

.login-form-box {
    max-width: 450px;
    width: 100%;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(209,209,209,0.5);
    -moz-box-shadow: 0px 0px 15px 0px rgba(209,209,209,0.5);
    box-shadow: 0px 0px 15px 0px rgba(209,209,209,0.5);
}

.login-form-box h3 {
    font-size: 22px;
    font-family: 'Playfair Display', serif;
}

.login-form-box a {
    color: rgb(114, 57, 65);
    text-decoration: none;
    font-size: 14px;
}

.login-separator {
    background-color: rgba(0, 0, 0, 0.2);
    height: 1px;
    width: 100%;
}

.login-form-box {
    background-color: rgb(240, 240, 240);
    border-radius: 10px;
}

.login-form-box form {
    width: 100%;
}

.login-form-box span {
    color: rgb(114, 57, 65);
    font-weight: bold;
}

.login-form-box .form-control {
    border-radius: 10px;
}

.login-form-box .form-control:focus {
    box-shadow: none;
    border-color: rgb(114, 57, 65) !important;
}

.login-form-box .error {
    color: rgb(199, 0, 0);
}