/* ==========================================================================
   MY ACCOUNT: Password & Security
   ========================================================================== */

.hs-password-form {
    margin-top: 30px;
}

.hs-row-full {
    grid-template-columns: 1fr; /* Forzar 1 sola columna para la current password */
}

.hs-password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.hs-password-input-wrapper .hs-input {
    padding-right: 50px; /* Dejar espacio para no tapar el texto con el ojito */
}

.hs-toggle-pwd {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.3s ease;
}

.hs-toggle-pwd:hover {
    color: #000;
}

.hs-justify-end {
    justify-content: flex-end; /* Empuja el botón de Save Changes a la derecha */
    margin-top: 40px;
}