.password-wrapper {
    width: 350px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#password-input {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

.meter-header {
    display: flex;
    justify-content: space-between; /* Alinea texto a la izquierda y % a la derecha */
    margin-bottom: 5px;
    font-size: 13px;
    font-family: sans-serif;
}

#strength-percentage {
    font-weight: bold;
}

.strength-meter {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.bar {
    height: 100%;
    width: 0%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease;
}