.recover-page {
    background: #f7f8fb;
    min-height: 100vh;
    padding: 40px 16px;
    box-sizing: border-box;
}

.recover-wrap {
    max-width: 560px;
    margin: 0 auto;
}

.recover-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .08);
    padding: 28px 24px;
}

.recover-title {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
}

.recover-subtitle {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.5;
    color: #6b7280;
    text-align: center;
}

.recover-field {
    margin-bottom: 18px;
}

.recover-label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
}

.recover-input-wrap {
    position: relative;
}

.recover-input {
    width: 100% !important;
    height: 56px !important;
    padding: 0 16px !important;
    border: 1px solid #d7deea !important;
    border-radius: 14px !important;
    background: #fff !important;
    color: #1f2937 !important;
    font-size: 16px;
    transition: border-color .2s ease, box-shadow .2s ease !important;
    box-sizing: border-box;
}

.recover-input:focus {
    outline: none;
    border-color: #f58220;
    box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.14);
}

.recover-help {
    margin-top: 10px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.recover-btn {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 12px;
    background: #68a63d;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease, opacity .2s ease;
}

.recover-btn:hover {
    background: #5c9436;
}

.recover-btn[disabled] {
    opacity: .7;
    cursor: not-allowed;
}

.recover-note {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
    text-align: center;
}

.recover-note2 {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e8edf5;
    color: #5b6472;
    font-size: 14px;
    line-height: 1.55;
}

.recover-link {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.recover-link a {
    color: #f58220;
    text-decoration: none;
    font-weight: 700;
}

.recover-link a:hover {
    text-decoration: underline;
}

.recover-alert {
    display: none;
    margin-bottom: 16px;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.5;
}

.recover-alert.is-error {
    background: #fff4f4;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.recover-success {
    display: none;
    text-align: center;
}

.recover-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ecfdf3;
    color: #15803d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.recover-success h2 {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1.2;
    color: #1f2937;
}

.recover-success p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.5;
    color: #6b7280;
}

.recover-success .recover-note {
    margin-top: 0;
}

.recover-secondary-btn {
    display: inline-block;
    min-width: 180px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #f58220;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: background .2s ease;
}

.recover-secondary-btn:hover {
    background: #df7418;
}

@media (max-width:480px) {
    .recover-card {
        padding: 22px 18px;
    }

    .recover-title {
        font-size: 26px;
    }
}