/* Estilos para permitir pegado en campos de contraseña */
input[type="password"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    -webkit-touch-callout: default;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* Permitir selección de texto en campos de contraseña */
input[type="password"]::selection {
    background: #007acc;
    color: white;
}

input[type="password"]::-moz-selection {
    background: #007acc;
    color: white;
}

/* Asegurar que el pegado funcione */
input[type="password"]:focus {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
} 