/*General*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
}

body, html {
    height: 100%;
    overflow: hidden; /* Previene el scroll */
}

/*index.html*/
.container {
    display: flex;
    height: 100vh;
    position: relative;
}

.header {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    z-index: 1;
}

.header a { 
    display: block;
}

.header img { 
    height: 100px; /* Ajusta la altura según sea necesario */ 
    max-width: 100%; 
    object-fit: contain; /* Asegura que la imagen mantenga sus proporciones */ 
}

.left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.left img {
    max-width: 50%;
    max-height: 50%;
}

.right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #132D60;
    color: white;
}

.login-form {
    display: flex;
    flex-direction: column;
    border: 1px solid rgb(4, 11, 22);
    border-radius: 5px;
    padding: 25px;
    width: 80%;
    max-width: 500px;
    font-size: 20px;
}

.login-form h2 {
    margin-bottom: 30px;
    margin-top: 15px;
    text-align: center;
    font-size: 30px;
}

.login-form label {
    margin-bottom: 10px;
    font-size: 20px;
}

.login-form input {
    margin-bottom: 15px;
    padding: 5px;
    border: none;
    border-radius: 5px;
}

.login-form button {
    padding: 10px;
    margin-top: 15px;
    background-color: #040B16;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 20px;
}

.login-form button:hover {
    background-color: #E8B321;
}

.askingthings { 
    display: flex; 
    justify-content: space-between; 
    width: 100%; 
    padding: 1px; /* Ajusta el padding según sea necesario */
} 

.forgotpass, .registeruser { 
    color: white; 
    padding: 1px; 
    display: flex;
}

  .forgot-pass-link, .not-registered {
    color: white;
    font-size: 12px; 
  }

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 20px;
    background-color: transparent;
    text-align: center;
    z-index: 1;
}

.footer p {
    color: #040B16;
    font-size: 12px;
    line-height: 20px; /* Alinea el texto verticalmente */
    opacity: 0.7; /* Ajusta la transparencia del texto */
}

/*triprecord.html*/
/* Archivo CSS global */ 
.page-bg-color { 
    background-color: rgb(232, 179, 33); /* Elige el color de fondo que prefieras */ 
    min-height: 100vh; /* Asegura que el contenedor abarque toda la altura de la ventana */ 
}

.header1 {
    height: 55px;
    background-color: #132D60;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 210px;
    position: relative;
}

.header1 h1 {
    font-size: 36px;
    text-align: center;
    flex: 1;
}

/* Solución para el menú */
.logo {
    position: relative;
    height: 50px;
    width: 50px;
    margin-left: auto;
    cursor: pointer;
}

.default-logo {
    height: 50px;
    width: 50px;
    transition: all 0.5s;
}

.hover-logo {
    display: none;
    width: 250px;
    height: 50px;
    transition: all 0.5s;
}

.logo:hover .default-logo {
    display: none;
}

.logo:hover .hover-logo {
    display: block;
}

.menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    /*background-color: rgb(19, 45, 96);*/
    width: 250px;
    /*border: 1px solid #ddd;*/
    z-index: 1;
    opacity: 0.9; /* Optional: Adjust opacity */
}

.logo:hover .menu, .menu:hover {
    display: block;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu ul li {
    padding: 10px;
    position: relative;
}

.menu ul li a {
    display: block;
    text-decoration: none;
    color: rgb(4, 11, 22);
}

.menu ul li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu ul li a:hover {
    color: #007bff;
}

.submenu {
    display: none;
    position: absolute;
    right: 100%;
    top: 0;
    background-color: transparent;
    list-style: none;
    padding: 10px;
    /*border: 1px solid #ddd;*/
    width: 220px;
    /*box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);*/
    z-index: 1;
    opacity: 0.9; /* Optional: Adjust opacity */
}

.menu li:hover .submenu {
    display: block;
}

.submenu li a {
    display: block;
    padding: 10px;
}

.submenu li:hover {
    background-color: rgba(255, 255, 255, 0.025);
}

.submenu li a:hover {
    color: #ff5733;
}

.form-left label, .form-left input {
    display: block;
    width: 85%; /* Ajusta a un tamaño razonable */
    margin-bottom: 10px; /* Ajusta el espacio entre campos */
}

.form-right label, .form-right input {
    display: block;
    width: 85%; /* Ajusta a un tamaño razonable */
    margin-bottom: 10px; /* Ajusta el espacio entre campos */
}

.form-left {
    width: 60%; /* Ajusta el ancho para que los campos no se vean amontonados */
    float: left;
    padding-right: 20px; /* Agrega un margen a la derecha */
    padding-left: 100px;
    margin-top: 5px;
}

.form-right {
    width: 35%;
    float: left;
    margin-top: 5px;
}

.recuadro {
    width: 500px; /* Ancho del recuadro */
    height: 500px; /* Altura del recuadro */
    background-color: rgb(19, 45, 96);
    border: 2px solid rgb(4, 11, 22);
    color: white; /* Color del texto */
    border-radius: 10px;
    padding: 20px; /* Espaciado interno */
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);*/ /* Sombra */
    position: absolute; /* Posicionamiento absoluto para centrar */
    top: 50%; /* Posición vertical centrada */
    left: 50%; /* Posición horizontal centrada */
    transform: translate(-50%, -50%); /* Ajusta la posición para centrar correctamente */
    display: flex;
    flex-direction: column; /* Elementos en columna */
    gap: 32px; /* Separación entre secciones */
}

.sectr4, .sectr6, .sectr8, .sectr10, .sectr12, .sectr14, .sectr61, .sectr81 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sectr4 p, .sectr6 p, .sectr8 p, .sectr10 p, .sectr12 p, .sectr14 p, .sectr61 p, .sectr81 p {
    flex: 1; /* Ocupan el mismo ancho */
    margin: 0;
    font-size: 20px;
}

.sectr4 input, .sectr10 input, .sectr12 select, .sectr14 input, .sectr61 input, .sectr81 input {
    flex: 1.5; /* Tamaño consistente de los inputs */
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    width: 240px; /* Ancho del botón */
    height: 37px; /* Alto del botón */
    font-size: 20px;
}

/* Ajuste general para las secciones */
.sectr6, .sectr8 {
    display: flex;
    justify-content: space-between; /* Texto a la izquierda y checkbox a la derecha */
    align-items: center;
}

/* Contenedor para centrar el checkbox */
.sectr6 .recuadro-internotr, .sectr8 .recuadro-internotr {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    width: 240px; /* Ajusta este valor según el espacio necesario */
    height: 37px; /* Asegúrate de que coincida con el tamaño de los demás inputs */
    border-radius: 5px; /* Opcional: bordes redondeados */
}

/* Estilo de los checkboxes */
.sectr6 input[type="checkbox"], .sectr8 input[type="checkbox"] {
    margin: 0; /* Elimina márgenes innecesarios */
    transform: scale(1.5); /* Escala para mejor visibilidad si es necesario */
}

.sectr16, .secna9, .secfp9, .secreg18 {
    display: flex;
    justify-content: space-between;
    gap: 5px; /* Separación entre botones */
}

.sectr16 button, .secna9 button, .secfp9 button, .secreg18 button {
    flex: 1;
    padding: 5px;
    border: none;
    border-radius: 5px;
    background-color: black;
    color: white;
    cursor: pointer;
    text-align: center;
    width: 225px; /* Ancho del botón */
    height: 39px; /* Alto del botón */
}

.sectr16 button:hover, .secna9 button:hover, .secfp9 button:hover, .secreg18 button:hover {
    background-color: rgb(232, 179, 33);
}

/* Estilo para el input de fecha */
#fechaActual {
    width: 240px; /* Use full width of its container */
    height: 37px; /* Adjust height as needed */
    font-size: 20px; /* Font size for the text */
    /*font-weight: 600;*/
    border: 1px solid #ffffff; /* Optional border */
    border-radius: 5px; /* Optional rounded corners */
    box-sizing: border-box; /* Ensure padding is included in width calculation */
    text-align: center; /* Center the text */
}

/* Estilo para el input de fecha */
#fechaActual1 {
    width: 240px; /* Use full width of its container */
    height: 37px; /* Adjust height as needed */
    font-size: 20px; /* Font size for the text */
    /*font-weight: 600;*/
    /*border: 1px solid #ffffff;*/ /* Optional border */
    border-radius: 5px; /* Optional rounded corners */
    box-sizing: border-box; /* Ensure padding is included in width calculation */
    text-align: center; /* Center the text */
}
  
/* Estilo adicional para Flatpickr */
.flatpickr-calendar {
    z-index: 1000; /* Ensure calendar is on top */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgb(232, 179, 33);
    border: 1px solid rgb(4, 11, 22);
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(4, 11, 22, 0.2);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1; /* Ensure the dropdown is above other elements */
    max-height: 200px; /* Limit dropdown height to prevent overflowing */
    overflow-y: auto; /* Enable scrolling if the list is too long */
    overflow-x: hidden;
  }
  
  .dropdown-menu li {
    /*padding: 5px 10px;*/
    cursor: pointer;
    white-space: nowrap; /* Prevent text wrapping within list items */
    text-overflow: ellipsis; /* Truncate long text with ellipsis (...) */
    font-size: 15px;
  }
  
  .dropdown-menu li:hover {
    background-color: #000000;
    color: #ffffff;
  }

  /* Styles for the arrow icon */
#wheredyg::after {
content: ""; /* Hide the actual text content */
position: absolute;
right: 10px; /* Adjust as needed for desired spacing */
top: 50%; /* Vertical align with the text */
transform: translateY(-50%); /* Center vertically within the line height */
pointer-events: none; /* Disable mouse interaction on the arrow */
font-size: 12px; /* Adjust size as desired */
color: #b11717; /* Adjust color as desired */
}

#wheredyg:hover::after {
color: #1cd33a; /* Change arrow color on hover */
}

/* Styles for the arrow icon */
#wheredye::after {
content: ""; /* Hide the actual text content */
position: absolute;
right: 10px; /* Adjust as needed for desired spacing */
top: 50%; /* Vertical align with the text */
transform: translateY(-50%); /* Center vertically within the line height */
pointer-events: none; /* Disable mouse interaction on the arrow */
font-size: 12px; /* Adjust size as desired */
color: #b11717; /* Adjust color as desired */
}

#wheredye:hover::after {
color: #1cd33a; /* Change arrow color on hover */
}

/* Styles for the arrow icon */
#wheredys::after {
content: ""; /* Hide the actual text content */
position: absolute;
right: 10px; /* Adjust as needed for desired spacing */
top: 50%; /* Vertical align with the text */
transform: translateY(-50%); /* Center vertically within the line height */
pointer-events: none; /* Disable mouse interaction on the arrow */
font-size: 12px; /* Adjust size as desired */
color: #b11717; /* Adjust color as desired */
}

#wheredys:hover::after {
color: #1cd33a; /* Change arrow color on hover */
}

#reason {
    /* Remove default dropdown styling */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  
    /* Add some padding for better aesthetics */
    /*padding: 5px;*/
    height: 37px;
    border-radius: 5px;
    color: rgba(0, 0, 0, 0.6);
  }
  
  #reason option {
    /*padding: 5px 10px;*/
    cursor: pointer;
    white-space: nowrap; /* Prevent text wrapping within list items */
    text-overflow: ellipsis; /* Truncate long text with ellipsis (...) */
    background-color: rgb(232, 179, 33);
    border: 1px solid rgb(4, 11, 22);
    cursor: pointer;
    color: #ffffff;
    font-size: 15px;
  }
  
  #reason option:hover {
    /* Add a subtle border change on hover */
    background-color: rgb(4, 11, 22);
  }

/*newaddress.html*/
.recuadronewaddress {
    width: 500px; /* Ancho del recuadro */
    height: 500px; /* Altura del recuadro */
    background-color: rgb(19, 45, 96);
    border: 2px solid rgb(4, 11, 22);
    color: white; /* Color del texto */
    border-radius: 10px;
    padding: 20px; /* Espaciado interno */
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);*/ /* Sombra */
    position: absolute; /* Posicionamiento absoluto para centrar */
    top: 50%; /* Posición vertical centrada */
    left: 50%; /* Posición horizontal centrada */
    transform: translate(-50%, -50%); /* Ajusta la posición para centrar correctamente */
    display: flex;
    flex-direction: column; /* Elementos en columna */
    gap: 45px; /* Separación entre secciones */
}

.secna4, .secna5, .secna6, .secna7, .secna8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.secna4 p, .secna5 p, .secna6 p, .secna7 p, .secna8 p {
    flex: 1; /* Ocupan el mismo ancho */
    margin: 0;
    font-size: 20px;
}

.secna4 input, .secna5 input, .secna6 input, .secna7 input, .secna8 input {
    flex: 1.5; /* Tamaño consistente de los inputs */
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    width: 240px; /* Ancho del botón */
    height: 37px; /* Alto del botón */
    font-size: 20px;
}

/* Eliminar las flechas en el input específico de phonefp en todos los navegadores */
.secna8 .recuadro-addaddress input[type=number] {
    -webkit-appearance: none; /* Para Chrome, Safari, Edge y Opera */
    -moz-appearance: textfield; /* Para Firefox */
    appearance: none; /* Propiedad estándar */
    margin: 0;
    /* Para mayor compatibilidad en Brave */
    &::-webkit-outer-spin-button,
    &::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
}

/*getreport.html*/
.recuadrogetreport {
    width: 500px; /* Ancho del recuadro */
    height: 500px; /* Altura del recuadro */
    background-color: rgb(19, 45, 96);
    border: 2px solid rgb(4, 11, 22);
    color: white; /* Color del texto */
    border-radius: 10px;
    /*padding: 20px; /* Espaciado interno */
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);*/ /* Sombra */
    position: absolute; /* Posicionamiento absoluto para centrar */
    top: 50%; /* Posición vertical centrada */
    left: 50%; /* Posición horizontal centrada */
    transform: translate(-50%, -50%); /* Ajusta la posición para centrar correctamente */
    display: flex;
    flex-direction: column; /* Elementos en columna */
    gap: 35px; /* Separación entre secciones */
}

.secgr3 {
    /* Estilos existentes para la sección 7 */
    width: 500px;
    height: 110px; /* Ajusta la altura según sea necesario */
    font-size: 30px; /* Tamaño de fuente deseado */
    /*font-weight: 600;*/
    color: rgb(255, 255, 255);
    padding-top: 20px;
    /*border: 1px solid #000000;*/
    text-align: center; /* Centra el texto horizontalmente */
    display: flex; /* Activa el diseño flexbox */
    align-items: center; /* Alinea el contenido verticalmente en el centro */
    justify-content: center; /* Alinea el contenido horizontalmente en el centro */
    flex-direction: column; /* Define la dirección del flexbox como columna */
    overflow: hidden; /* Oculta el texto que se desborda */
    line-height: 1; /* Ajusta el interlineado para evitar el desbordamiento vertical */
  }
  
  .secgr4 {
    /* Estilos existentes para la sección 7 */
    width: 500px;
    height: 40px; /* Ajusta la altura según sea necesario */
    font-size: 25px; /* Tamaño de fuente deseado */
    /*font-weight: 600;*/
    color: rgb(255, 255, 255);
    /*padding-bottom: 20px;*/
    /*border: 1px solid #000000;*/
    text-align: center; /* Centra el texto horizontalmente */
    display: flex; /* Activa el diseño flexbox */
    align-items: center; /* Alinea el contenido verticalmente en el centro */
    justify-content: center; /* Alinea el contenido horizontalmente en el centro */
    flex-direction: column; /* Define la dirección del flexbox como columna */
    overflow: hidden; /* Oculta el texto que se desborda */
    line-height: 1; /* Ajusta el interlineado para evitar el desbordamiento vertical */
  }
  
  .secgr5 {
    /* Estilos existentes para la sección 7 */
    width: 500px;
    height: 80px; /* Ajusta la altura según sea necesario */
    font-size: 25px; /* Tamaño de fuente deseado */
    /*font-weight: 600;*/
    color: rgb(255, 255, 255);
    /*padding-top: 20px;*/
    /*padding-bottom: 40px;*/
    /*border: 1px solid #000000;*/
    text-align: center; /* Centra el texto horizontalmente */
    display: flex; /* Activa el diseño flexbox */
    align-items: center; /* Alinea el contenido verticalmente en el centro */
    justify-content: center; /* Alinea el contenido horizontalmente en el centro */
    flex-direction: column; /* Define la dirección del flexbox como columna */
    overflow: hidden; /* Oculta el texto que se desborda */
    line-height: 1; /* Ajusta el interlineado para evitar el desbordamiento vertical */
  }
  
  .secgr6 {
    /* Estilos existentes para las secciones 1 y 3 */
    width: 500px;
    height: 40px; /* Ajusta la altura según sea necesario */
    font-size: 20px;
    color: rgb(255, 255, 255);
    /*padding: 1px;*/
    /*border: 1px solid #000000;*/
    text-align: center; /* Centra el texto horizontalmente */
    display: flex; /* Activate flexbox layout */
    align-items: center; /* Align content vertically in the center */
    justify-content: space-evenly;
  }
  
    .secgr6 .recuadro-selectmy select {
      /* Styles for the select element within .recuadro-internotreason */
      width: 90%; /* Fills the entire width of the container */
      height: 50px;
      font-size: 20px; /* Adjust font size as needed */
      /*font-weight: 600;*/
      color: rgb(255, 255, 255);
      padding: 1px; /* Adjust padding as needed */
      border: none; /* Removes default border */
      outline: none; /* Removes default focus outline */
      border: 1px solid rgb(4, 11, 22);
      border-radius: 10px;
      text-align: center;
      background-color: rgb(4, 11, 22);
    }
  
    .recuadro-selectmy {
      position: relative;
    }
  
    #month {
      /* Remove default dropdown styling */
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      /* Add some padding for better aesthetics */
      /*padding: 5px;*/
      height: 30px;
      width: 150px;
      font: 20px;
      border: 1px solid rgb(4, 11, 22);
      border-radius: 5px;
    }
  
    #year {
      /* Remove default dropdown styling */
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      /* Add some padding for better aesthetics */
      /*padding: 5px;*/
      height: 30px;
      width: 80px;
      font: 20px;
      /*border: 1px solid #000000;*/
      border-radius: 5px;
    }
    
    #month option, #year option {
      /*padding: 5px 10px;*/
      cursor: pointer;
      white-space: nowrap; /* Prevent text wrapping within list items */
      text-overflow: ellipsis; /* Truncate long text with ellipsis (...) */
      font-size: 20px;
    }
    
    option:hover {
      /* Add a subtle border change on hover */
      border: 1px solid rgb(4, 11, 22);
      cursor: pointer;
      background-color: rgb(232, 179, 33);
      color: #ffffff;
    }
  
    .secgr7 {
      /* Estilos existentes para la sección 5 */
      width: 500px;
      height: 66px;
      margin: 0 auto;
      padding-top: 70px;
      /*border: 1px solid #000000;*/
      position: relative;
    }
    
    .recuadro-botongr {
      /* Estilos existentes para el recuadro interno */
      width: 90%; /* Ancho del recuadro interno debe ser 100% para que ocupe todo el ancho de la sección */
      height: 100%; /* Alto del recuadro interno debe ser 100% para que ocupe todo el alto de la sección */
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      /*background-color: #fff;*/
      padding: 1px;
      /*border: 1px solid #000000;*/
      display: flex; /* Activa el diseño flexbox para centrar el botón */
      align-items: center; /* Alinea el contenido verticalmente en el centro */
      justify-content: center; /* Alinea el contenido horizontalmente en el centro */
    }
    
    .boton-getreport {
      width: 260px; /* Ancho del botón */
      height: 50px; /* Alto del botón */
      background-color: rgb(4, 11, 22); /* Color de fondo negro */
      color: #fff; /* Color de texto blanco */
      border: none; /* Elimina el borde por defecto del botón */
      border-radius: 5px; /* Radio de borde redondeado */
      font-size: 20px; /* Tamaño de fuente del texto */
      cursor: pointer; /* Cambia el cursor a mano al pasar el mouse sobre el botón */
    }

    .boton-getreport:hover {
        background-color: rgb(232, 179, 33);
    }
  
    .secgr8 {
      /* Estilos existentes para la sección 7 */
      width: 500px;
      height: 40px; /* Ajusta la altura según sea necesario */
      font-size: 1px; /* Tamaño de fuente deseado */
      /*font-weight: 600;*/
      color: rgb(255, 255, 255);
      /*padding-top: 20px;*/
      /*border: 1px solid #000000;*/
      text-align: center; /* Centra el texto horizontalmente */
      display: flex; /* Activa el diseño flexbox */
      align-items: center; /* Alinea el contenido verticalmente en el centro */
      justify-content: center; /* Alinea el contenido horizontalmente en el centro */
      flex-direction: column; /* Define la dirección del flexbox como columna */
      overflow: hidden; /* Oculta el texto que se desborda */
      line-height: 1; /* Ajusta el interlineado para evitar el desbordamiento vertical */
    }
  
  .secgr9 {
    width: 500px; /* Ancho de la sección (borde completo) */
    height: 40px; /* Altura de la sección (borde completo) */
    margin: 0 auto; /* Centra la sección horizontalmente */
    font-size: 25px; /* Tamaño de fuente deseado */
    /*font-weight: 600;*/
    padding: 1px;
    /*border: 1px solid #000000;*/
    display: flex; /* Activa el diseño flexbox */
    align-items: center; /* Alinea el contenido verticalmente en el centro */
    justify-content: space-between; /* Distribuye el contenido uniformemente entre los extremos */
    }
    
    .secgr9 div {
      flex: 1; /* Allocate space to each div based on its flex value */
      display: flex; /* Enable flexbox layout for each div */
      align-items: center; /* Align content vertically in the center */
      justify-content: center; /* Align content horizontally in the center */
      text-align: center; /* Center text horizontally */
      /*border: 1px solid #000000;*/
      /* Additional styles for each section */
    }
  
    .secgr9 div:first-child { /* Target the first div within .secreg4 */
      flex: 0.6; /* Assign 33% width to the first div */
    }

/*forgotpass.html*/
.recuadroforgotpass {
    width: 500px; /* Ancho del recuadro */
    height: 500px; /* Altura del recuadro */
    background-color: rgb(19, 45, 96);
    border: 2px solid rgb(4, 11, 22);
    color: white; /* Color del texto */
    border-radius: 10px;
    padding: 20px; /* Espaciado interno */
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);*/ /* Sombra */
    position: absolute; /* Posicionamiento absoluto para centrar */
    top: 50%; /* Posición vertical centrada */
    left: 50%; /* Posición horizontal centrada */
    transform: translate(-50%, -50%); /* Ajusta la posición para centrar correctamente */
    display: flex;
    flex-direction: column; /* Elementos en columna */
    gap: 35px; /* Separación entre secciones */
}

.secfp3, .secfp4, .secfp5, .secfp6, .secfp7, .secfp8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.secfp3 p, .secfp4 p, .secfp5 p, .secfp6 p, .secfp7 p, .secfp8 p {
    flex: 1; /* Ocupan el mismo ancho */
    margin: 0;
    font-size: 20px;
}

.secfp3 input, .secfp4 input, .secfp5 input, .secfp6 input, .secfp7 input, .secfp8 input {
    flex: 1.5; /* Tamaño consistente de los inputs */
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    width: 240px; /* Ancho del botón */
    height: 37px; /* Alto del botón */
    font-size: 20px;
}

/* Eliminar las flechas en el input específico de phonefp en todos los navegadores */
.secfp6 .recuadro-internofp input[type=number] {
    -webkit-appearance: none; /* Para Chrome, Safari, Edge y Opera */
    -moz-appearance: textfield; /* Para Firefox */
    appearance: none; /* Propiedad estándar */
    margin: 0;
    /* Para mayor compatibilidad en Brave */
    &::-webkit-outer-spin-button,
    &::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
}

/*registeruser.html*/
.recuadroregisteruser {
    width: 500px; /* Ancho del recuadro */
    height: 500px; /* Altura del recuadro */
    background-color: rgb(19, 45, 96);
    border: 2px solid rgb(4, 11, 22);
    color: white; /* Color del texto */
    border-radius: 10px;
    padding: 20px; /* Espaciado interno */
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);*/ /* Sombra */
    position: absolute; /* Posicionamiento absoluto para centrar */
    top: 50%; /* Posición vertical centrada */
    left: 50%; /* Posición horizontal centrada */
    transform: translate(-50%, -50%); /* Ajusta la posición para centrar correctamente */
    display: flex;
    flex-direction: column; /* Elementos en columna */
    gap: 24px; /* Separación entre secciones */
}

.secreg4, .secreg6, .secreg8, .secreg10, .secreg12, .secreg14, .secreg16 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.secreg4 p, .secreg6 p, .secreg8 p, .secreg10 p, .secreg12 p, .secreg14 p, .secreg16 p {
    flex: 1; /* Ocupan el mismo ancho */
    margin: 0;
    font-size: 20px;
}

.secreg4 input, .secreg6 input, .secreg8 input, .secreg10 input, .secreg12 input, .secreg14 input, .secreg16 input {
    flex: 1.5; /* Tamaño consistente de los inputs */
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    width: 240px; /* Ancho del botón */
    height: 37px; /* Alto del botón */
    font-size: 20px;
}

/* Eliminar las flechas en el input específico de phonefp en todos los navegadores */
.secreg14 .recuadro-internoreg input[type=number] {
    -webkit-appearance: none; /* Para Chrome, Safari, Edge y Opera */
    -moz-appearance: textfield; /* Para Firefox */
    appearance: none; /* Propiedad estándar */
    margin: 0;
    /* Para mayor compatibilidad en Brave */
    &::-webkit-outer-spin-button,
    &::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
}

/*Responsive*/
/* Estilos para pantallas pequeñas */
@media only screen and (max-width: 600px) {
    .header img {
        height: 70px; /* Ajusta la altura según sea necesario */
    }

    .left, .right {
        flex: 1 100%; /* Hace que cada sección ocupe el 100% del ancho en pantallas pequeñas */
        max-width: 100%; /* Asegura que no haya desbordamiento */
    }

    .left img {
        max-width: 80%;
        max-height: 80%;
    }

    .login-form {
        width: 90%; /* Ajusta el ancho en pantallas pequeñas */
        font-size: 16px; /* Reduce el tamaño de fuente en pantallas pequeñas */
    }

    .login-form button {
        font-size: 16px;
    }

    .form-left, .form-right {
        width: 100%; /* Hace que los formularios ocupen el 100% del ancho */
        padding: 0; /* Elimina el padding */
        float: none; /* Evita que los elementos floten uno al lado del otro */
    }

    .menu {
        width: 100%; /* Ajusta el ancho del menú */
    }
}

/* Estilos para pantallas medianas */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    .header img {
        height: 90px; /* Ajusta la altura según sea necesario */
    }

    .left img {
        max-width: 70%;
        max-height: 70%;
    }

    .login-form {
        width: 85%; /* Ajusta el ancho en pantallas medianas */
        font-size: 18px; /* Ajusta el tamaño de fuente en pantallas medianas */
    }

    .login-form button {
        font-size: 18px;
    }

    .form-left, .form-right {
        width: 50%; /* Ajusta el ancho para evitar que los campos se amontonen */
    }

    .menu {
        width: 80%; /* Ajusta el ancho del menú */
    }
}

/* Estilos para pantallas grandes */
@media only screen and (min-width: 1025px) {
    .header img {
        height: 100px; /* Mantén la altura original */
    }

    .left img {
        max-width: 50%;
        max-height: 50%;
    }

    .login-form {
        width: 80%; /* Mantén el ancho original */
        font-size: 20px; /* Mantén el tamaño de fuente original */
    }

    .login-form button {
        font-size: 20px;
    }

    .form-left, .form-right {
        width: 60%; /* Mantén el ancho original */
    }

    .menu {
        width: 250px; /* Mantén el ancho original del menú */
    }
}
