html {
    background-color: #0F4C5C;
}

body.login-page {
    align-items: center;
    background-color: #0F4C5C;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    justify-content: center;
    margin: 0;
    min-width: 0;
    min-height: 100vh;
    padding: 16px;
}

.login-page .login-logo {
    display: block;
    height: auto;
    margin-bottom: 28px;
    width: 240px;
}

.login-page .form-container {
    background-color: #FFFFFF;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    margin: 0;
    max-width: 400px;
    padding: 36px;
    width: 100%;
}

.login-page .login_heading {
    color: #1A1A1A;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 24px;
}

.login-page .login_form > br {
    display: none;
}

.login-page .form-container input[type="email"],
.login-page .form-container input[type="password"] {
    background: #FFFFFF;
    border: 1px solid #D0D0D0;
    border-radius: 6px;
    box-sizing: border-box;
    box-shadow: none;
    font-family: inherit;
    font-size: 16px;
    margin: 0 0 18px;
    padding: 11px 14px;
    transition: border-color 0.15s, box-shadow 0.15s;
    width: 100% !important;
}

.login-page .form-container input[type="email"]:focus,
.login-page .form-container input[type="password"]:focus {
    border-color: #E8A817;
    box-shadow: 0 0 0 3px rgba(232, 168, 23, 0.25);
    outline: none;
}

.login-page .form-container .error-msg {
    color: #FF3131;
}

.login-page .form-container .button {
    background-color: #E8A817;
    border: 0;
    border-radius: 6px;
    color: #0F4C5C;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    height: auto;
    letter-spacing: normal;
    line-height: normal;
    margin: 10px 0;
    opacity: 1;
    padding: 12px;
    position: static;
    text-transform: none;
    transition: background-color 0.15s;
}

.login-page .form-container .button:hover {
    background-color: #D09A15;
    opacity: 1;
}

.login-page .form-container .button:active {
    background-color: #B8880F;
    color: #0F4C5C;
}

.login-page .forgot-pass {
    color: #0F4C5C;
}
