.password-recovery-page {
    min-height: 700px;
    padding: 72px 0 96px;
    background:
        radial-gradient(
            circle at top,
            rgba(37, 99, 235, 0.11),
            transparent 38%
        ),
        #f4f6f9;
}

.password-recovery-card {
    width: min(580px, 100%);
    margin: 0 auto;
    padding: 44px;
    border: 1px solid #dfe5ee;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 39, 75, 0.12);
}

.password-recovery-icon {
    display: flex;
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    color: #1769df;
    background: #e8f0ff;
    font-size: 32px;
}

.password-recovery-eyebrow {
    display: block;
    margin-bottom: 9px;
    color: #1769df;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.password-recovery-card h1 {
    margin: 0;
    color: #061d43;
    font-size: clamp(32px, 6vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.password-recovery-intro {
    margin: 17px 0 0;
    color: #586881;
    font-size: 16px;
    line-height: 1.65;
}

.password-recovery-form {
    margin-top: 30px;
}

.password-recovery-field {
    margin-bottom: 20px;
}

.password-recovery-field label {
    display: block;
    margin-bottom: 8px;
    color: #142d52;
    font-size: 14px;
    font-weight: 800;
}

.password-recovery-field input {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    border: 1px solid #cfd8e6;
    border-radius: 14px;
    outline: none;
    color: #102a50;
    background: #f9fbfd;
    font: inherit;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.password-recovery-field input:focus {
    border-color: #1769df;
    box-shadow: 0 0 0 4px rgba(23, 105, 223, 0.12);
}

.password-recovery-help {
    display: block;
    margin-top: 7px;
    color: #77859a;
    font-size: 12px;
    line-height: 1.5;
}

.password-recovery-error {
    display: block;
    margin-top: 7px;
    color: #b42318;
    font-size: 13px;
    font-weight: 700;
}

.password-recovery-global-errors {
    margin-bottom: 20px;
    padding: 14px 16px;
    border: 1px solid #f3b7b2;
    border-radius: 14px;
    color: #8f1d15;
    background: #fff1f0;
}

.password-recovery-global-errors p {
    margin: 0;
}

.password-recovery-global-errors p + p {
    margin-top: 6px;
}

.password-recovery-submit {
    width: 100%;
    min-height: 52px;
    border: 0;
    cursor: pointer;
}

.password-recovery-actions {
    display: flex;
    gap: 12px;
    margin-top: 26px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.password-recovery-link {
    display: inline-flex;
    min-height: 44px;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    color: #1769df;
    font-weight: 800;
    text-decoration: none;
}

.password-recovery-link:hover {
    text-decoration: underline;
}

.password-recovery-notice {
    margin-top: 26px;
    padding: 17px;
    border: 1px solid #d9e5f7;
    border-radius: 16px;
    color: #49617f;
    background: #f3f7fd;
    font-size: 13px;
    line-height: 1.6;
}

.password-recovery-success {
    margin-top: 26px;
    padding: 20px;
    border: 1px solid #b8e7cb;
    border-radius: 17px;
    color: #17673a;
    background: #edf9f2;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .password-recovery-page {
        padding: 42px 0 70px;
    }

    .password-recovery-card {
        padding: 32px 20px;
        border-radius: 22px;
    }
}
