:root {
        --primary-color: #667eea;
        --primary-hover: #764ba2;
        --error-color: #e74c3c;
        --success-color: #27ae60;
        --info-color: #3498db;
        --text-color: #333;
        --light-gray: #f5f5f5;
        --border-color: #e5e7eb;
    }
        
    
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    
  .form-group input, .form-group textarea {padding-left: 40px!important;}
    
    .password-container {
        width: 100%;
        max-width: 420px;
        animation: slideUp 0.5s ease-out;
         margin: 0 auto;
    }
    
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .password-box {
        width: 100%;
        background: white;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        overflow: hidden;
    }
    
    .password-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 32px 24px;
        text-align: center;
    }
    
    .password-header h1 {
        font-size: 24px;
        font-weight: 700;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    
    .password-body {
        padding: 32px;
    }
    
    .alert {
        padding: 12px 16px;
        border-radius: 8px;
        margin-bottom: 20px;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .alert-success {
        background: #f0fdf4;
        border: 1px solid #bbf7d0;
        color: #166534;
    }
    
    .alert-error {
        background: #fef2f2;
        border: 1px solid #fecaca;
        color: #991b1b;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 600;
        color: #374151;
    }
    
    .input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }
    
    .input-wrapper > i {
        position: absolute;
        left: 14px;
        color: #9ca3af;
        font-size: 16px;
        pointer-events: none;
    }
    
    .form-control {
        width: 100%;
        height: 48px;
        padding: 0 16px 0 44px;
        border: 2px solid var(--border-color);
        border-radius: 10px;
        font-size: 15px;
        transition: all 0.3s;
        background: #f9fafb;
        color: #374151;
    }
    
    .form-control:focus {
        border-color: var(--primary-color);
        outline: none;
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
    
    .form-control:focus + i,
    .input-wrapper:focus-within > i {
        color: var(--primary-color);
    }
    
    .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 48px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        gap: 8px;
    }
    
    .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }
    
    .back-link {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
    }
    
    .link {
        color: #667eea;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: color 0.3s;
    }
    
    .link:hover {
        color: var(--primary-hover);
        text-decoration: underline;
    }
    
    @media (max-width: 480px) {
        body {
            padding: 16px;
            background: #ffffff;
        }
        
        .password-box {
            box-shadow: none;
        }
        
        .password-header {
            padding: 24px 20px;
        }
        
        .password-header h1 {
            font-size: 20px;
        }
        
        .password-body {
            padding: 24px 20px;
        }
    }
