@charset "utf-8";
/* CSS Document */

.login-container h3 {
    -webkit-font-smoothing: antialiased;
    font-family: "Headspace Apercu", sans-serif;
    text-rendering: optimizelegibility;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: -0.055em;
    color: rgb(58, 57, 56);
    margin: 0px 0px 1rem;
    text-align: center;
}

.login-container label {
    color: rgb(61,155,233);
    direction: inherit;
    display: inline-block;
    font: normal normal normal 20px/1.4em avenir-lt-w01_35-light1475496,sans-serif;
    line-height: 1;
    margin-bottom: 14px;
    text-align: inherit;
    word-break: break-word;
}

.new_sign_up {
    -webkit-font-smoothing: antialiased;
    font-family: "Headspace Apercu", sans-serif;
    text-rendering: optimizelegibility;
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 1.5em;
    color: rgb(90, 88, 87);
    display: flex;
    flex-flow: wrap;
    -webkit-box-pack: center;
    justify-content: center;
    margin: 1rem 0px;
}

.new_sign_up a {
    color: rgba(0, 125, 251) !important;
    text-decoration: underline;
}

#forgot-password-group {
    text-align: center;
}

#forgot-password-group a {
    font-size: 16px;
    font-weight: 600;
    line-height: inherit;
    color: #0058B1;
    text-decoration: underline;
}

/* Login container styling */
.login-container {
    width: 34rem;
    max-width: 100%;
    padding: 30px;
    margin: 30px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 24px;
    opacity: 1;
    transition: 0.5s ease-out;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Input field styling */
.input-field {
    margin: 10px 0;
    box-sizing: border-box;
}

.input-field:focus, .input-field:hover {
    border-color: #007bff;
    outline: none;
    border-width: 2px;
    box-shadow: inset 0 0 #007bff,0 0 0 4px #72B6FF;
}

/* Submit button styling */
.login-btn {
    font-size: 1rem;
    font-weight: 700;
    background-color: #6BB5FF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 4px 16px;
    min-height: 52px;
    font-family: inherit;
    outline: none;
    cursor: pointer;
    color: #003F7E !important;
    border: 0;
    border-radius: 9999px;
    transition: background-color .25s ease-in-out, box-shadow .25s ease-in-out;
    margin: 0px 0px 20px 0;
    text-decoration: none !important;
}

.login-btn:hover {
    box-shadow: inset 0 0 0 150px rgba(255,255,255, 0.1);
}

/* Error box styling */
.error-box {
    display: flex;
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
    color: #d00e17;
}

/* Watermark styling */
.watermark {
    height: 200px;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 200px;
    max-width: 100%;
    margin: 0 auto;
}

/* Mobile responsiveness */
@media (min-width: 90rem) {
    .login-container h3 {
        font-size: 2.5rem;
    }
}