/* Estilos para validação de senha forte em tempo real */

.password-strength-container {
    margin-top: 8px;
    margin-bottom: 15px;
}

.password-strength-bar {
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.password-strength-fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
    border-radius: 2px;
}

.password-strength-message {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.4;
    color: #666;
    transition: all 0.3s ease;
}

.password-strength-message ul {
    margin: 0;
    padding-left: 20px;
    color: #d32f2f;
}

.password-strength-message li {
    margin-bottom: 4px;
}

.password-strength-message strong {
    font-weight: 600;
}

/* Animações suaves */
.password-strength-container * {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .password-strength-message {
        font-size: 12px;
    }
}
