.password-strength-meter {
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
}

.very-weak { width: 20%; background-color: #ff4444; }
.weak { width: 40%; background-color: #ffbb33; }
.fair { width: 60%; background-color: #ffeb3b; }
.good { width: 80%; background-color: #00C851; }
.strong { width: 100%; background-color: #007E33; }

.requirement-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.875rem;
}

.requirement-item.met {
    color: #007E33;
}

.check-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.check-icon.met {
    background-color: #e8f5e9;
    color: #007E33;
}

.check-icon.unmet {
    background-color: #f5f5f5;
    color: #666;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-on-load {
    animation: fadeInUp 0.6s ease forwards;
}

.hover-lift {
    transition: transform 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-1px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}