/* Write your custom CSS here */

/* Fix para zoom en iPhone/iOS - Prevenir auto-zoom en inputs y botones 
input,
textarea,
select,
button,
.btn,
.form-control,
.form-select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"],
input[type="week"] {
    font-size: 16px !important;
    -webkit-text-size-adjust: none;
}

*/

/* Prevent iOS auto-zoom on inputs */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
 
  input, textarea, select, button, .form-control, .form-select {
    
    -webkit-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
    max-height: 9999px !important;
  }
 
 
 
 /* FIX FORCE ZOOM PREVENTION ON iOS Safari */
 html input,
 html textarea,
 html select,
 html button,
 html .form-control,
 html .form-select,
 html input[type="text"],
 html input[type="email"],
 html input[type="password"],
 html input[type="number"],
 html input[type="tel"],
 html input[type="url"],
 html input[type="search"],
 html input[type="date"],
 html input[type="time"],
 html input[type="datetime-local"],
 html input[type="month"],
 html input[type="week"],
 .form-floating input,
 .form-floating textarea,
 .form-floating select {
     
     -webkit-text-size-adjust: 100% !important;
     text-size-adjust: 100% !important;
     touch-action: manipulation !important;
 }
 
 /* Asegurar que el font-size se mantenga en focus/active */
 html input:focus,
 html textarea:focus,
 html select:focus,
 html button:focus,
 html .form-control:focus,
 html .form-select:focus,
 html input[type="text"]:focus,
 html input[type="email"]:focus,
 html input[type="password"]:focus,
 html input[type="number"]:focus,
 html input[type="tel"]:focus,
 html input[type="url"]:focus,
 html input[type="search"]:focus,
 html input[type="date"]:focus,
 html input[type="time"]:focus,
 html input[type="datetime-local"]:focus,
 html input[type="month"]:focus,
 html input[type="week"]:focus {
     font-size: 16px !important;
 }