/* portal-login-page.css � page-specific overrides (shared styles in portal-shared.css) */

.content-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 40px);
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.portal-page-form {
    gap: 40px;
    width: 100%;
    max-width: 480px;
    align-items: stretch;
}

.portal-form-field-area {
    gap: 20px;
}

.portal-form-validation-group {
    width: 100%;
}

.input-group {
    width: 100%;
}

.portal-form-group {
    height: 73px;
}

.portal-form-label {
    width: 116px;
    height: 20px;
}

#password {
    padding-right: 30px;
    display: flex;
    align-items: center;
    position: relative;
}

.toggle-password-fa {
    position: absolute;
    right: 12px;
    top: 16px;
    height: 16px;
    z-index: 2;
}

.fa-eye {
    color: #052331;
    z-index: 1;
}

.fa-eye-slash {
    color: #052331;
    z-index: 1;
}

.portal-form-forgot-password-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 0px;
    width: 100%;
    max-width: 480px;
    flex: none;
    order: 1;
    flex-grow: 0;
}

p {
    margin-top: 16px;
    margin-bottom: 0px;
}

.portal-form-forgot-password-link {
    font-family: 'Montserrat', Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.005em;
    color: #3EC0FB;
    display: block;
    margin: auto;
    z-index: 2;
}

.portal-form-forgot-password-link:hover {
    background-color: rgba(26, 162, 226, 0.08);
}

.privacy-policy,
.terms-conditions {
    color: #3EC0FB;
}

/* --- Login-page responsive --- */

@media only screen and (max-width: 576px) {
    .portal-page-form {
        padding: 0 20px;
        box-sizing: border-box;
    }

    .portal-form-group {
        height: auto;
    }

    .portal-form-forgot-password-link {
        font-size: 14px;
    }
}