/* 找回密码页面特有样式 */
.find-pwd-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.find-pwd-box {
    width: 100%;
    max-width: 480px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.find-pwd-box h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    color: transparent;
}

/* 表单样式继承自 login.css */

/* 返回登录链接样式 */
.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.back-link:hover {
    color: var(--primary-dark);
    transform: translateX(-2px);
}

.back-link i {
    font-size: 1.2rem;
}

/* 只保留找回密码页面特有的样式 */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(50% + 20px);
    width: calc(100% - 40px);
    height: 2px;
    background: var(--border);
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-gray);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.step.active .step-number {
    background: var(--gradient);
    color: var(--text-light);
} 