/* استایل‌های مشترک صفحات احراز هویت */

    
        /*برای صفحه register استایل‌های پایه */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body { 
            background: #0f172a; 
            padding: 0;
            margin: 0;
            color: #fff;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1.6;
        }
        
        .register-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 20px;
            min-height: 100vh;
        }
        
        .register-form-container {
            max-width: 450px;
            width: 100%;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
            position: relative;
            overflow: hidden;
        }
        
        .register-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(0,255,0,0.05)"/></svg>');
            background-size: cover;
            z-index: 0;
        }
        
        .register-form-content {
            position: relative;
            z-index: 1;
        }
        
        .register-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #00ff00, #01FFBF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.3;
        }
        
        .register-subtitle {
            text-align: center;
            color: #b0b0b0;
            margin-bottom: 30px;
            font-size: 1rem;
        }
        
        .form-group { 
            margin-bottom: 25px; 
        }
        
        label { 
            display: block; 
            margin-bottom: 8px; 
            font-weight: bold;
            color: #e0e0e0;
            font-size: 0.95rem;
        }
        
        input { 
            width: 100%; 
            padding: 14px; 
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #333; 
            border-radius: 10px; 
            box-sizing: border-box; 
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        input:focus {
            outline: none;
            border-color: #00ff00;
            box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
        }
        
        input::placeholder {
            color: #888;
        }
        
        .register-button { 
            width: 100%; 
            padding: 16px; 
            background: linear-gradient(135deg, #00ff00, #01FFBF);
            color: #000; 
            border: none; 
            border-radius: 10px; 
            cursor: pointer; 
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .register-button:hover {
            background: linear-gradient(135deg, #01FFBF, #00ff00);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 0, 0.3);
        }
        
        .alert { 
            padding: 12px 15px; 
            border-radius: 10px; 
            margin-bottom: 20px; 
            text-align: center;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .success { 
            background: rgba(212, 237, 218, 0.2); 
            color: #4ade80; 
            border: 1px solid rgba(76, 175, 80, 0.3);
        }
        
        .error { 
            background: rgba(248, 215, 218, 0.2); 
            color: #f87171; 
            border: 1px solid rgba(220, 53, 69, 0.3);
        }
        
        .g-recaptcha { 
            margin: 20px 0; 
            display: flex; 
            justify-content: center; 
            transform: scale(0.9);
            transform-origin: center;
        }
        
        .login-link {
            text-align: center;
            margin-top: 25px;
            color: #b0b0b0;
            font-size: 0.95rem;
        }
        
        .login-link a {
            color: #00ff00;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .login-link a:hover {
            text-decoration: underline;
            color: #01FFBF;
        }
        
               
        /* استایل لینک بازگشت به خانه */
        .home-link-container {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .home-link {
            color: #00ff00;
            text-decoration: none;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .home-link:hover {
            color: #01FFBF;
            text-decoration: underline;
        }
         
        
/********************login****************************/
  
        .login-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 20px;
            min-height: 100vh;
        }
        
        .login-form-container {
            max-width: 450px;
            width: 100%;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
            position: relative;
            overflow: hidden;
        }
        
        .login-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(0,255,0,0.05)"/></svg>');
            background-size: cover;
            z-index: 0;
        }
        
        .login-form-content {
            position: relative;
            z-index: 1;
        }
        
        .login-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #00ff00, #01FFBF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.3;
        }
        
        .login-subtitle {
            text-align: center;
            color: #b0b0b0;
            margin-bottom: 30px;
            font-size: 1rem;
        }
        
        .form-group { 
            margin-bottom: 25px; 
        }
        
        label { 
            display: block; 
            margin-bottom: 8px; 
            font-weight: bold;
            color: #e0e0e0;
            font-size: 0.95rem;
        }
        
        input { 
            width: 100%; 
            padding: 14px; 
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #333; 
            border-radius: 10px; 
            box-sizing: border-box; 
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        input:focus {
            outline: none;
            border-color: #00ff00;
            box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
        }
        
        input::placeholder {
            color: #888;
        }
        
        .login-button { 
            width: 100%; 
            padding: 16px; 
            background: linear-gradient(135deg, #00ff00, #01FFBF);
            color: #000; 
            border: none; 
            border-radius: 10px; 
            cursor: pointer; 
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .login-button:hover {
            background: linear-gradient(135deg, #01FFBF, #00ff00);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 0, 0.3);
        }
        
        .alert { 
            padding: 12px 15px; 
            border-radius: 10px; 
            margin-bottom: 20px; 
            text-align: center;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .success { 
            background: rgba(212, 237, 218, 0.2); 
            color: #4ade80; 
            border: 1px solid rgba(76, 175, 80, 0.3);
        }
        
        .error { 
            background: rgba(248, 215, 218, 0.2); 
            color: #f87171; 
            border: 1px solid rgba(220, 53, 69, 0.3);
        }
        
        .links { 
            text-align: center; 
            margin-top: 25px; 
        }
        
        .links a { 
            color: #00ff00; 
            text-decoration: none; 
            margin: 0 10px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 8px 0;
            font-size: 0.95rem;
        }
        
        .links a:hover {
            color: #01FFBF;
            text-decoration: underline;
            transform: translateY(-2px);
        }
        
        .links br {
            margin: 10px 0;
        }
        
        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .remember-me {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .remember-me input {
            width: auto;
            margin-left: 8px;
        }
        
        .remember-me label {
            margin-bottom: 0;
            color: #b0b0b0;
            font-size: 0.9rem;
        }

/**********************forget-password*************************/
      
        .forgot-password-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 20px;
            min-height: 100vh;
        }
        
        .forgot-password-form-container {
            max-width: 450px;
            width: 100%;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
            position: relative;
            overflow: hidden;
        }
        
        .forgot-password-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(0,255,0,0.05)"/></svg>');
            background-size: cover;
            z-index: 0;
        }
        
        .forgot-password-content {
            position: relative;
            z-index: 1;
        }
        
        .forgot-password-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #00ff00, #01FFBF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.3;
        }
        
        .forgot-password-subtitle {
            text-align: center;
            color: #b0b0b0;
            margin-bottom: 30px;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .form-group { 
            margin-bottom: 25px; 
        }
        
        label { 
            display: block; 
            margin-bottom: 8px; 
            font-weight: bold;
            color: #e0e0e0;
            font-size: 0.95rem;
        }
        
        input { 
            width: 100%; 
            padding: 14px; 
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #333; 
            border-radius: 10px; 
            box-sizing: border-box; 
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        input:focus {
            outline: none;
            border-color: #00ff00;
            box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
        }
        
        input::placeholder {
            color: #888;
        }
        
        .reset-button { 
            width: 100%; 
            padding: 16px; 
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            color: #fff; 
            border: none; 
            border-radius: 10px; 
            cursor: pointer; 
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .reset-button:hover {
            background: linear-gradient(135deg, #ff8e8e, #ff6b6b);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
        }
        
        .alert { 
            padding: 12px 15px; 
            border-radius: 10px; 
            margin-bottom: 20px; 
            text-align: center;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .success { 
            background: rgba(212, 237, 218, 0.2); 
            color: #4ade80; 
            border: 1px solid rgba(76, 175, 80, 0.3);
        }
        
        .error { 
            background: rgba(248, 215, 218, 0.2); 
            color: #f87171; 
            border: 1px solid rgba(220, 53, 69, 0.3);
        }
        
        .links { 
            text-align: center; 
            margin-top: 25px; 
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        
        .links a { 
            color: #00ff00; 
            text-decoration: none; 
            margin: 0 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 8px 0;
            font-size: 0.95rem;
        }
        
        .links a:hover {
            color: #01FFBF;
            text-decoration: underline;
            transform: translateY(-2px);
        }
        
        .links .separator {
            color: #666;
            margin: 0 5px;
        }
        
        .info-icon {
            text-align: center;
            font-size: 3rem;
            color: #ff6b6b;
            margin-bottom: 20px;
        }
        
        .instruction-text {
            background: rgba(255, 107, 107, 0.1);
            border: 1px solid rgba(255, 107, 107, 0.3);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 25px;
            text-align: center;
            color: #ff8e8e;
            font-size: 0.9rem;
            line-height: 1.5;
        }
/**************************reset-password****************************/
   
        .reset-password-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 20px;
            min-height: 100vh;
        }
        
        .reset-password-form-container {
            max-width: 450px;
            width: 100%;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
            position: relative;
            overflow: hidden;
        }
        
        .reset-password-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(0,255,0,0.05)"/></svg>');
            background-size: cover;
            z-index: 0;
        }
        
        .reset-password-content {
            position: relative;
            z-index: 1;
        }
        
        .reset-password-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #00ff00, #01FFBF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.3;
        }
        
        .reset-password-subtitle {
            text-align: center;
            color: #b0b0b0;
            margin-bottom: 30px;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .form-group { 
            margin-bottom: 25px; 
        }
        
        label { 
            display: block; 
            margin-bottom: 8px; 
            font-weight: bold;
            color: #e0e0e0;
            font-size: 0.95rem;
        }
        
        input { 
            width: 100%; 
            padding: 14px; 
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #333; 
            border-radius: 10px; 
            box-sizing: border-box; 
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        input:focus {
            outline: none;
            border-color: #00ff00;
            box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
        }
        
        input::placeholder {
            color: #888;
        }
        
        .code-input {
            text-align: center;
            letter-spacing: 8px;
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        .password-strength {
            margin-top: 8px;
            font-size: 0.8rem;
            color: #b0b0b0;
        }
        
        .reset-button { 
            width: 100%; 
            padding: 16px; 
            background: linear-gradient(135deg, #00ff00, #01FFBF);
            color: #000; 
            border: none; 
            border-radius: 10px; 
            cursor: pointer; 
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .reset-button:hover {
            background: linear-gradient(135deg, #01FFBF, #00ff00);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 0, 0.3);
        }
        
        .alert { 
            padding: 12px 15px; 
            border-radius: 10px; 
            margin-bottom: 20px; 
            text-align: center;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .success { 
            background: rgba(212, 237, 218, 0.2); 
            color: #4ade80; 
            border: 1px solid rgba(76, 175, 80, 0.3);
        }
        
        .error { 
            background: rgba(248, 215, 218, 0.2); 
            color: #f87171; 
            border: 1px solid rgba(220, 53, 69, 0.3);
        }
        
        .links { 
            text-align: center; 
            margin-top: 25px; 
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        
        .links a { 
            color: #00ff00; 
            text-decoration: none; 
            margin: 0 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 8px 0;
            font-size: 0.95rem;
        }
        
        .links a:hover {
            color: #01FFBF;
            text-decoration: underline;
            transform: translateY(-2px);
        }
        
        .links .separator {
            color: #666;
            margin: 0 5px;
        }
        
        .security-icon {
            text-align: center;
            font-size: 3rem;
            color: #00ff00;
            margin-bottom: 20px;
        }
        
        .instruction-text {
            background: rgba(0, 255, 0, 0.1);
            border: 1px solid rgba(0, 255, 0, 0.3);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 25px;
            text-align: center;
            color: #b0b0b0;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .password-requirements {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 15px;
            margin-top: 10px;
            font-size: 0.8rem;
            color: #b0b0b0;
        }
        
        .password-requirements ul {
            margin: 0;
            padding-right: 20px;
        }
        
        .password-requirements li {
            margin-bottom: 5px;
            font-size: 0.75rem;
        }
/**********************کد تایید برای ورود*************************/

        .minute-signals-hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin: 40px auto;
            border-radius: 20px;
            max-width: 1200px;
            border: 1px solid #333;
            z-index:0;
        }
        
        .minute-signals-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(0,255,0,0.05)"/></svg>');
            background-size: cover;
        }
        
        .minute-signals-content {
            position: relative;
            z-index: 2;
        }
        
        .minute-signals-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #00ff00, #01FFBF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .minute-signals-subtitle {
            font-size: 1.2rem;
            color: #b0b0b0;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .minute-signals-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        
        .minute-feature {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid #333;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .minute-feature:hover {
            border-color: #00ff00;
            transform: translateY(-5px);
        }
        
        .minute-feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }
        
        .minute-feature-title {
            color: #fff;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .minute-feature-desc {
            color: #b0b0b0;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .minute-cta-section {
            margin-top: 40px;
        }
        
        .minute-cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(135deg, #00ff00, #01FFBF);
            color: #000;
            text-decoration: none;
            border-radius: 10px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin: 10px;
        }
        
        .minute-cta-button:hover {
            background: linear-gradient(135deg, #01FFBF, #00ff00);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 0, 0.3);
        }
        
        .minute-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .minute-stat {
            text-align: center;
        }
        
        .minute-stat-number {
            display: block;
            font-size: 2rem;
            font-weight: bold;
            color: #00ff00;
            margin-bottom: 5px;
        }
        
        .minute-stat-label {
            color: #b0b0b0;
            font-size: 0.9rem;
        }

        /* استایل‌های جدید برای صفحه تأیید شماره */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body { 
            background: #0f172a; 
            padding: 0;
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #fff;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1.6;
        }
        
        .verify-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 20px;
            min-height: 100vh;
        }
        
        .verify-form-container {
            max-width: 450px;
            width: 100%;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
            position: relative;
            overflow: hidden;
        }
        
        .verify-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(0,255,0,0.05)"/></svg>');
            background-size: cover;
            z-index: 0;
        }
        
        .verify-content {
            position: relative;
            z-index: 1;
        }
        
        .verify-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #00ff00, #01FFBF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.3;
        }
        
        .verify-subtitle {
            text-align: center;
            color: #b0b0b0;
            margin-bottom: 30px;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .mobile-number {
            text-align: center;
            color: #00ff00;
            font-weight: bold;
            font-size: 1.1rem;
            margin: 15px 0;
            direction: ltr;
            display: block;
        }
        
        .form-group { 
            margin-bottom: 25px; 
        }
        
        label { 
            display: block; 
            margin-bottom: 8px; 
            font-weight: bold;
            color: #e0e0e0;
            font-size: 0.95rem;
        }
        
        .code-input { 
            width: 100%; 
            padding: 16px; 
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #333; 
            border-radius: 10px; 
            text-align: center; 
            font-size: 1.3rem; 
            letter-spacing: 8px; 
            box-sizing: border-box; 
            color: #fff;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .code-input:focus {
            outline: none;
            border-color: #00ff00;
            box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
            transform: scale(1.02);
        }
        
        .code-input::placeholder {
            color: #888;
            letter-spacing: normal;
        }
        
        .verify-button { 
            width: 100%; 
            padding: 16px; 
            background: linear-gradient(135deg, #00ff00, #01FFBF);
            color: #000; 
            border: none; 
            border-radius: 10px; 
            cursor: pointer; 
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            margin: 15px 0;
        }
        
        .verify-button:hover {
            background: linear-gradient(135deg, #01FFBF, #00ff00);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 0, 0.3);
        }
        
        .alert { 
            padding: 12px 15px; 
            border-radius: 10px; 
            margin-bottom: 20px; 
            text-align: center;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .success { 
            background: rgba(212, 237, 218, 0.2); 
            color: #4ade80; 
            border: 1px solid rgba(76, 175, 80, 0.3);
        }
        
        .error { 
            background: rgba(248, 215, 218, 0.2); 
            color: #f87171; 
            border: 1px solid rgba(220, 53, 69, 0.3);
        }
        
        .links { 
            text-align: center; 
            margin-top: 25px; 
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        
        .links a { 
            color: #00ff00; 
            text-decoration: none; 
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 8px 0;
            font-size: 0.95rem;
        }
        
        .links a:hover {
            color: #01FFBF;
            text-decoration: underline;
            transform: translateY(-2px);
        }
        
        .verification-icon {
            text-align: center;
            font-size: 3rem;
            color: #00ff00;
            margin-bottom: 20px;
        }
        
        .instruction-text {
            background: rgba(0, 255, 0, 0.1);
            border: 1px solid rgba(0, 255, 0, 0.3);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 25px;
            text-align: center;
            color: #b0b0b0;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .timer {
            text-align: center;
            color: #ff6b6b;
            font-weight: bold;
            margin: 10px 0;
            font-size: 0.9rem;
        }
        
        .resend-link {
            text-align: center;
            margin: 15px 0;
        }
        
        .resend-link a {
            color: #00ff00;
            text-decoration: none;
            font-weight: 500;
        }
        
        .resend-link a:hover {
            text-decoration: underline;
        }
