  /* Móvil (hasta 767px) */
@media screen and (max-width: 767px) {
  body{
    font-family: 'Poppins';
    background-image: url("../img/fondo_vertical.jpg");    
    background-position: center center;
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    color: #fff;
    margin: 0;
  }

  .form-text, .text-muted {
    color:#fff !important;
  }

  .container {
    max-width: 90%;
  }  
  .logo{
    margin-top: 5px;
    margin-left: 5px;
    padding-bottom: 25px;
  }

  .text-uppercase, .initialism {
    text-transform: uppercase;
  }

  .page .text-bold, .page strong {
    font-weight: 700;
  }

  html .page .offset-top-17 {
    margin-top: 17px;
  }

  .text-dark {
    color: #fff !important;
    font-size: 25px;
  }
  
  .text-regular {
    font-weight: 400;
  }


.text-bold, .page strong {
    font-weight: 700;
    color: #014D4D;
}  
  .btn-primary {
    color: #fff;
    background-color: #014D4D;
    border-color: #014D4D;
}

.btn-primary:hover {
  color: #fff;
  background-color: #014D4D;
  border-color: #014D4D;
}

.error{
  color:#ab2e46 !important;
}
.exito{
  font-weight: 700;
  color: #12AA9F;
}
/*}*/

.advertencia {
color:#fff;
}

        .btn-custom {
            background-color: #12331B;
            color: white;
            border: none;
            font-weight: bold;
        }
        .btn-custom:hover {
            background-color: #fff;
            color: #12331B;
        }
      .search-form {
        margin-top: 40px;
        background-color: rgba(40,68,54, 0.1);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      }
        .search-form .form-group {
            margin-bottom: 15px;
        }

  .form-check {
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            border: 2px solid #12331B;
            border-radius: 8px;
            background-color: #fff3e0;
        }

        .form-check-input {
            width: 30px;
            height: 30px;
            margin-right: 15px;
            border-radius: 8px;
            border: 2px solid #12331B;
            transition: all 0.3s ease;
        }

        .form-check-input:checked {
            background-color: #014D4D;
            border-color: #014D4D;
        }
        .form-check-input:focus {
            box-shadow: 0 0 5px rgba(255, 97, 26, 0.5);
        }

        .form-check:hover .form-check-input {
            transform: scale(1.1);
        }                

.input-custom {   
    min-height: 2px; /* Altura mínima */
    max-width: 400px; /* Altura mínima */    
    padding: 4px; /* Espaciado interno */
    border: 1px solid #13AA9E !important; /* Borde sólido */
    border-radius: 10px; /* Bordes redondeados */
    background-color: #f9f9f9; /* Color de fondo */
    font-family: 'Arial', sans-serif; /* Fuente personalizada */
    font-size: 26px; /* Tamaño de la fuente */
    color: #333; /* Color del texto */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para darle profundidad */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Transiciones suaves */
    resize: vertical; /* Permite redimensionar solo en la dirección vertical */
    }
       
    /* Estilo para el placeholder */
    .input-custom::placeholder {
    color: #13AA9E !important; /* Color del texto del placeholder */    
    }
    
    /* Efecto al enfocar el textarea */
    .input-custom:focus {
    border-color: #007bff; /* Cambio de color del borde */
    box-shadow: 0 6px 10px rgba(0, 123, 255, 0.2); /* Sombra más pronunciada */
    outline: none; /* Quita el borde por defecto del navegador */
    }
  }

/* Escritorio (768px y superior) */
@media screen and (min-width: 768px) {
  body{
    font-family: 'Poppins';
    background-image: url("../img/fondo_horizontal.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    color: #fff;
  }

  .form-text, .text-muted {
    color:#fff !important;
  }

  .container {
    max-width: 90%;
  }  
  .logo{
    margin-top: 5px;
    margin-left: 5px;
    padding-bottom: 25px;
  }

  .text-uppercase, .initialism {
    text-transform: uppercase;
  }

  .page .text-bold, .page strong {
    font-weight: 700;
  }

  html .page .offset-top-17 {
    margin-top: 17px;
  }

  .text-dark {
    color: #fff !important;
    font-size: 25px;
  }
  
  .text-regular {
    font-weight: 400;
  }


.text-bold, .page strong {
    font-weight: 700;
    color: #014D4D;
}  
  .btn-primary {
    color: #fff;
    background-color: #014D4D;
    border-color: #014D4D;
}

.btn-primary:hover {
  color: #fff;
  background-color: #014D4D;
  border-color: #014D4D;
}

.error{
  color:#ab2e46 !important;
}
.exito{
  font-weight: 700;
  color: #12AA9F;
}
/*}*/

.advertencia {
color:#fff;
}

        .btn-custom {
            background-color: #12331B;
            color: white;
            border: none;
            font-weight: bold;
        }
        .btn-custom:hover {
            background-color: #fff;
            color: #12331B;
        }
      .search-form {
        margin-top: 40px;
        background-color: rgba(40,68,54,0.1);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      }
        .search-form .form-group {
            margin-bottom: 15px;
        }

  .form-check {
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            border: 2px solid #12331B;
            border-radius: 8px;
            background-color: #fff3e0;
        }

        .form-check-input {
            width: 30px;
            height: 30px;
            margin-right: 15px;
            border-radius: 8px;
            border: 2px solid #12331B;
            transition: all 0.3s ease;
        }

        .form-check-input:checked {
            background-color: #014D4D;
            border-color: #014D4D;
        }
        .form-check-input:focus {
            box-shadow: 0 0 5px rgba(255, 97, 26, 0.5);
        }

        .form-check:hover .form-check-input {
            transform: scale(1.1);
        }                

.input-custom {   
    min-height: 2px; /* Altura mínima */
    max-width: 400px; /* Altura mínima */    
    padding: 4px; /* Espaciado interno */
    border: 1px solid #13AA9E !important; /* Borde sólido */
    border-radius: 10px; /* Bordes redondeados */
    background-color: #f9f9f9; /* Color de fondo */
    font-family: 'Arial', sans-serif; /* Fuente personalizada */
    font-size: 26px; /* Tamaño de la fuente */
    color: #333; /* Color del texto */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para darle profundidad */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Transiciones suaves */
    resize: vertical; /* Permite redimensionar solo en la dirección vertical */
    }
       
    /* Estilo para el placeholder */
    .input-custom::placeholder {
    color: #13AA9E !important; /* Color del texto del placeholder */    
    }
    
    /* Efecto al enfocar el textarea */
    .input-custom:focus {
    border-color: #007bff; /* Cambio de color del borde */
    box-shadow: 0 6px 10px rgba(0, 123, 255, 0.2); /* Sombra más pronunciada */
    outline: none; /* Quita el borde por defecto del navegador */
    }
  }