/* Ajustes exclusivos da recuperação de senha, sobre a base visual do login. */

.password-recovery-page {
    background:
        radial-gradient(circle at 12% 20%, rgba(13, 122, 66, 0.07), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(243, 130, 32, 0.08), transparent 30%),
        #eef1f5;
}

.recovery-card .visual-panel {
    flex-basis: 44%;
}

.recovery-card .form-panel {
    padding-inline: 54px;
}

.recovery-card .form-container {
    max-width: 410px;
}

.visual-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 11px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffd4ad;
    background: rgba(243, 130, 32, 0.12);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.recovery-card .visual-copy h2 {
    max-width: 330px;
    font-size: 1.12rem;
    line-height: 1.45;
}

.step {
    display: none;
}

.step.active {
    display: block;
    animation: slideUp 0.45s ease both;
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(243, 130, 32, 0.2);
    border-radius: 14px;
    color: #F38220;
    background: #fff6ed;
    box-shadow: 0 8px 24px rgba(243, 130, 32, 0.12);
}

.recovery-card .form-header {
    margin-bottom: 26px;
}

.form-eyebrow {
    display: block;
    margin-bottom: 7px;
    color: #0D7A42;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.recovery-card .form-header h1 {
    font-size: 1.9rem;
}

.recovery-card .form-header p {
    max-width: 390px;
    line-height: 1.65;
}

.input-with-icon {
    position: relative;
}

.input-with-icon svg {
    position: absolute;
    top: 50%;
    left: 14px;
    color: #9ca9b5;
    transform: translateY(-50%);
    pointer-events: none;
    transition: color 0.2s;
}

.input-with-icon input {
    padding-left: 44px;
}

.input-with-icon:focus-within svg {
    color: #F38220;
}

.info-msg {
    display: none;
    position: relative;
    margin-bottom: 18px;
    padding: 12px 14px 12px 40px;
    border: 1px solid;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.5;
}

.info-msg::before {
    position: absolute;
    top: 11px;
    left: 14px;
    font-size: 1rem;
    font-weight: 800;
}

.info-msg.success {
    color: #17663c;
    border-color: #a8dcc0;
    background: #f0fff6;
}

.info-msg.success::before {
    content: '✓';
}

.info-msg.error {
    color: #b83232;
    border-color: #f0b7b7;
    background: #fff5f5;
}

.info-msg.error::before {
    content: '!';
}

.password-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: -2px;
    padding: 10px 12px;
    border-radius: 9px;
    color: #607182;
    background: #f4f7fa;
    font-size: 0.72rem;
    line-height: 1.5;
}

.password-hint svg {
    flex: 0 0 auto;
    margin-top: 1px;
    color: #0D7A42;
}

.recovery-card .submit-btn {
    margin-top: 18px;
}

.recovery-card .register-link {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .recovery-card .visual-panel {
        padding-block: 24px;
    }

    .recovery-card .form-panel {
        padding: 34px 26px 40px;
    }

    .recovery-card .mascot-area {
        height: 145px;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding-inline: 14px;
    }

    .recovery-card .form-panel {
        padding: 30px 20px 36px;
    }

    .step-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 15px;
    }

    .recovery-card .form-header h1 {
        font-size: 1.6rem;
    }
}

@media (max-height: 760px) and (min-width: 769px) {
    .recovery-card .form-panel {
        padding-block: 28px;
    }

    .step-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .recovery-card .form-header {
        margin-bottom: 18px;
    }

    .recovery-card .form-header h1 {
        font-size: 1.7rem;
    }

    .recovery-card .submit-btn {
        margin-top: 12px;
    }
}
