/* Estilos para los botones de mostrar/ocultar contraseña */
#toggleBtn,
#toggleBtn2 {
    background: none;
    border: none;
    color: #0077cc;
    font-size: 0.95rem;
    cursor: pointer;
    margin-left: 0.5em;
    padding: 0.2em 0.6em;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

#toggleBtn:hover,
#toggleBtn2:hover {
    background: #e6f0fa;
    color: #005999;
}

/* Opcional: para alinear el botón con el input */
.form-field {
    display: flex;
    align-items: center;
    gap: 0.5em;
}