     
     
/* Added transition for progress bars for smooth loading effect */
.progress-bar-striped {
    background-size: 40px 40px;
    animation: progress-bar-stripes 1s linear infinite;
    transition: width 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Loading animation for each bar */
.progress-bar-striped::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40px;
    width: 40px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    animation: loading-bar 1s linear infinite;
}

      .strength-meter {
            height: 8px;
            background-color: #e1e5ee;
            border-radius: 4px;
            margin-bottom: 10px;
            overflow: hidden;
        }
        
        .strength-meter-fill {
            height: 100%;
            width: 0;
            transition: width 0.5s ease, background-color 0.3s ease;
        }
        
        .strength-text {
            font-size: 14px;
            text-align: center;
            padding: 8px 16px;
            border-radius: 20px;
            display: inline-block;
            transition: all 0.3s ease;
           
     /* Default state styles */
          
      background-color: #e1e5ee;
            color: #6b7280;
        }
        
        /* Strength level colors */
        .strength-weak {
            background-color: #fee2e2;
            color: #dc2626;
        }
        
        .strength-medium {
            background-color: #fef3c7;
            color: #d97706;
        }
        
        .strength-strong {
            background-color: #d1fae5;
            color: #059669;
        }
        
        .strength-very-strong {
            background-color: #dcfce7;
            color: #16a34a;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
            100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }
        
        h1 {
            color: #1e293b;
            margin-bottom: 20px;
            font-size: 24px;
            text-align: center;
        }
        
        .tips {
            margin-top: 20px;
            font-size: 14px;
            color: #64748b;
        }
        
        .tips ul {
            padding-right: 20px;
            margin-top: 10px;
        }
        
        .tips li {
            margin-bottom: 8px;
        }
    
