/* 找回密码样式 */
.progress-container {
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(194, 139, 55, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress {
    height: 100%;
    background: linear-gradient(45deg, #c28b37, #f0e6d2);
    width: 25%;
    transition: width 0.5s ease;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(240, 230, 210, 0.7);
}

.progress-step {
    position: relative;
    text-align: center;
    width: 25%;
}

.progress-step.active {
    color: #c28b37;
    font-weight: bold;
}

.progress-step::before {
    content: '';
    width: 10px;
    height: 10px;
    background: rgba(194, 139, 55, 0.2);
    border-radius: 50%;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
}

.progress-step.active::before {
    background: #c28b37;
    box-shadow: 0 0 10px rgba(194, 139, 55, 0.5);
}

.forgot-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.forgot-step.active {
    display: block;
}

.step-title {
    margin-bottom: 20px;
    color: #c28b37;
    font-size: 1.2rem;
    font-weight: normal;
}

.back-btn {
    display: block;
    background: transparent;
    border: 1px solid rgba(194, 139, 55, 0.3);
    color: #c28b37;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(194, 139, 55, 0.1);
}

.verification-msg {
    margin-bottom: 20px;
    color: #f0e6d2;
    text-align: center;
}

.verification-code-inputs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.code-input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(194, 139, 55, 0.3);
    border-radius: 8px;
    color: #f0e6d2;
    transition: all 0.3s ease;
}

.code-input:focus {
    border-color: #c28b37;
    box-shadow: 0 0 0 3px rgba(194, 139, 55, 0.2);
    outline: none;
}

.resend-code {
    text-align: center;
    margin-bottom: 20px;
    color: #f0e6d2;
    font-size: 0.9rem;
}

#resend-code-btn {
    background: transparent;
    border: none;
    color: #c28b37;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    font-size: 0.9rem;
}

#resend-code-btn:disabled {
    color: #666;
    cursor: not-allowed;
    text-decoration: none;
}

.page-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: #c28b37;
}

/* 波纹效果 */
.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 魔法通知 */
.magic-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 30px;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
}

.magic-notification.success {
    background: linear-gradient(45deg, #00C851, #007E33);
}

.magic-notification.error {
    background: linear-gradient(45deg, #ff4444, #CC0000);
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .verification-code-inputs {
        justify-content: space-around;
    }
    
    .code-input {
        width: 40px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .progress-labels {
        font-size: 0.7rem;
    }
    
    .code-input {
        width: 35px;
        height: 45px;
        font-size: 1.1rem;
    }
}