body {
    background: #f0f2f5;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}
.password-recovery-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.recovery-card {
    padding: 40px 48px 56px;
}

/* 顶部提示 */
.top-hint {
    background: #fef9e6;
    border-left: 5px solid #f5b042;
    padding: 16px 24px;
    border-radius: 20px;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #b85c00;
    font-weight: 500;
}
.top-hint .hint-icon {
    font-size: 24px;
}
.top-hint span {
    line-height: 1.4;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}
.form-sub {
    color: #5b6e8c;
    margin-bottom: 32px;
    border-bottom: 1px solid #e9edf2;
    padding-bottom: 16px;
}

/* 验证码行布局 */
.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}
.captcha-input {
    flex: 1;
}
.captcha-image {
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    background: #f9fafb;
    line-height: 0;
}
.captcha-image img {
    display: block;
    width: 130px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.1s ease;
    object-fit: cover;
}
.captcha-image:hover img {
    transform: scale(0.98);
    border-color: #cbd5e1;
}
.captcha-image:active img {
    transform: scale(0.96);
}

/* 提交按钮区域 */
.submit-area {
    margin-top: 40px;
}
.submit-btn {
    width: 100%;
    height: 52px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 40px;
    background: #3b82f6;
    border: none;
    box-shadow: 0 4px 8px rgba(59,130,246,0.2);
    transition: all 0.2s;
}
.submit-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(59,130,246,0.25);
}

/* 返回登录链接样式 */
.back-login-wrapper {
    margin-top: 28px;
    text-align: center;
}
.back-login-link {
    font-size: 15px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.back-login-link:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* 成功提示卡片 */
.success-card {
    margin-top: 32px;
    background: #eef9ff;
    border-radius: 24px;
    padding: 24px 28px;
    border: 1px solid #b8e1fc;
    text-align: center;
}
.success-card .success-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f3b5c;
    margin-bottom: 12px;
}
.success-card .success-sub {
    font-size: 15px;
    color: #2c5a7a;
    margin-bottom: 24px;
    word-break: break-all;
}
.success-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.success-links .el-link {
    font-size: 15px;
    font-weight: 500;
}

/* 响应式 */
@media (max-width: 680px) {
    .recovery-card {
        padding: 28px 24px 40px;
    }
    .captcha-wrapper {
        gap: 12px;
        flex-wrap: wrap;
    }
    .captcha-input {
        width: 100%;
        flex: auto;
    }
    .captcha-image img {
        width: 120px;
        height: 46px;
    }
    .form-title {
        font-size: 24px;
    }
    .top-hint {
        padding: 12px 18px;
        font-size: 14px;
    }
    .success-card {
        padding: 18px 20px;
    }
}
@media (max-width: 480px) {
    .recovery-card {
        padding: 20px 16px 32px;
    }
}

.el-form-item__label {
    font-weight: 500;
    color: #334155;
}
.el-input__wrapper {
    border-radius: 14px;
    box-shadow: 0 0 0 1px #e2e8f0 inset;
}
.el-input__wrapper:hover {
    box-shadow: 0 0 0 1px #cbd5e1 inset;
}
.el-input.is-focus .el-input__wrapper {
    box-shadow: 0 0 0 2px #3b82f6 inset !important;
}