@charset "UTF-8";
/* 瀵嗙爜閲嶇疆椤甸潰鐗规湁鏍峰紡 */
        .reset-container {
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 500px;
            padding: 40px;
            animation: fadeIn 0.5s ease-in-out;
        }
        
        .step-indicator {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
        }
        
        .step-indicator:before {
            content: '';
            position: absolute;
            top: 15px;
            left: 10%;
            right: 10%;
            height: 2px;
            background-color: #e1e1e1;
            z-index: 1;
        }
        
        .step {
            text-align: center;
            z-index: 2;
            position: relative;
            flex: 1;
        }
        
        .step-circle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #e1e1e1;
            color: #777;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .step.active .step-circle {
            background-color: #6a11cb;
            color: white;
        }
        
        .step-text {
            font-size: 14px;
            color: #777;
        }
        
        .step.active .step-text {
            color: #6a11cb;
            font-weight: 600;
        }
        
        .step-content {
            display: none;
        }
        
        .step-content.active {
            display: block;
        }
        
        .password-requirements {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
            margin-bottom: 20px;
        }
        
        .password-requirements ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }
        
        .password-requirements li {
            margin-bottom: 8px;
            color: #666;
            font-size: 14px;
        }
        
        .password-requirements li.valid {
            color: #28a745;
        }
        
        .password-requirements li.invalid {
            color: #dc3545;
        }
        
        .password-requirements i {
            margin-right: 8px;
        }
        
        .password-strength {
            margin-top: 10px;
            height: 5px;
            background-color: #e1e1e1;
            border-radius: 3px;
            overflow: hidden;
        }
        
        .password-strength-bar {
            height: 100%;
            width: 0;
            transition: width 0.3s;
        }
        
        .password-strength.weak .password-strength-bar {
            background-color: #dc3545;
            width: 33%;
        }
        
        .password-strength.medium .password-strength-bar {
            background-color: #ffc107;
            width: 66%;
        }
        
        .password-strength.strong .password-strength-bar {
            background-color: #28a745;
            width: 100%;
        }
        
        .back-to-login {
            text-align: center;
            margin-top: 20px;
        }
        
        .back-to-login a {
            color: #6a11cb;
            text-decoration: none;
            font-weight: 500;
        }
        
        .back-to-login a:hover {
            text-decoration: underline;
        }