/* portal-forgot-password-page.css � page-specific overrides (shared styles in portal-shared.css) */

.content-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 40px);
    position: relative;
    z-index: 1;
}

.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-instructions {
    font-family: 'roc-grotesk', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    width: 535px;
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.page-instructions-narrow {
    font-family: 'roc-grotesk', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    width: 363px;
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.portal-page-form {
    width: 100%;
    max-width: 480px;
    align-items: stretch;
}

.portal-form-validation-group {
    width: 100%;
}

.input-group {
    width: 100%;
}

.portal-form-group {
    height: 73px;
}

.portal-form-label {
    width: 116px;
    height: 20px;
}

.portal-form-submit-frame {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.portal-form-login-link-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 8px;
    width: auto;
    height: auto;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.portal-form-login-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-login-link:hover {
    background-color: rgba(26, 162, 226, 0.08);
}

/* --- Forgot-password responsive --- */

@media only screen and (max-width: 576px) {
    .content-container {
        padding: 0 20px;
        box-sizing: border-box;
    }

    .page-instructions {
        width: 100%;
    }

    .page-instructions-narrow {
        width: 100%;
    }

    .portal-form-field-area {
        gap: 20px;
    }

    .portal-form-submit-frame {
        margin-top: 20px;
    }

    .portal-form-group {
        height: auto;
    }

    .portal-form-login-link {
        font-size: 14px;
    }
}