/* Password Strength Meter Styles */
.password-strength-container {
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.password-strength-bar {
    width: 100%;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.strength-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease, background-color 0.3s ease;
    width: 0%;
}

.strength-bar-fill.very-weak {
    background-color: #dc3545;
}

.strength-bar-fill.weak {
    background-color: #fd7e14;
}

.strength-bar-fill.medium {
    background-color: #ffc107;
}

.strength-bar-fill.strong {
    background-color: #20c997;
}

.strength-bar-fill.very-strong {
    background-color: #28a745;
}

.strength-text {
    position: absolute;
    top: -1.5rem;
    right: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
}

/* Integration with existing form styles */
.form-floating .password-strength-container {
    margin-top: 0.25rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .strength-text {
        font-size: 0.8rem;
    }
}