:root {
  --gray: #494949;
  --botones: #0A939E;
  --naranja: #FF7C43;
  --titulos: #0A6E9F;
  --sm: 14px;
  --md: 16px;
  --lg: 28px;
}

html {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
}

.pagina1 {
  background-image: url("https://d1ocs6og0s31n5.cloudfront.net/cieltechno/landing_mybatch/banner-fondo-batch.jpg");
  background-size: cover;
  background-position: center;
  padding: 90px 20px;
  padding-left: 40px;
}

.contenido {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  flex-wrap: wrap;
  gap: 40px;
}

.texto1 {
  color: white;
  flex: 1;
  min-width: 300px;
}

.texto1 h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-family: 'PT Sans', sans-serif;
  line-height: 3.5rem;
}

.texto1 h1 span {
  font-size: 5rem;
  font-family: 'PT Sans', sans-serif;
}

.texto1 h2 {
  font-size: 2.0rem;
  margin-top: 20px;
  font-weight: lighter;
  font-family: 'PT Sans', sans-serif;
}

.formulario {
  flex: 1;
  min-width: 300px;
  /* display: flex; */
  justify-content: center;
  margin-left: 40px;
}

.form-container {
  background: white;
  border-radius: 8px;
  padding: 30px 20px;
  max-width: 400px;
  width: 100%;
}

.title {
  font-size: var(--lg);
  color: var(--botones);
  text-align: center;
  margin-bottom: 20px;
}

.input {
  background-color: var(--botones);
  border: none;
  height: 40px;
  font-size: var(--md);
  color: white;
  margin: 0 auto 15px auto; 
  padding: 0 10px;
  border-radius: 5px;
  width: 80%; 
  /* max-width: 280px;  */
  display: block;
  text-align: center;
}


.input::placeholder {
  color: white;
}

.primary-buttom {
  background-color: var(--naranja);
  color: white;
  font-weight: bold;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  width: 85%;
  /* max-width: 280px; */
  margin: 10px auto;
  display: block;
  cursor: pointer;
  font-family: Montserrat;
  text-align: center;
}


.primary-buttom:hover {
  background-color: #ff6d2e;
}

.aceptar_politica_datos {
  display: flex;
  align-items: start;
  font-size: 12px;
  margin-top: 10px;
  color: gray;
}

.aceptar_politica_datos input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--botones);
}

.texto-checkbox {
  display: flex;
  flex-direction: column;
}

.aquí {
  color: var(--botones);
  font-weight: bold;
  text-decoration: none;
}

/* Responsive para tablets y móviles */
@media (max-width: 768px) {
  .contenido {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .texto1 {
    margin-top: -40px;
  }

  .texto1 h1 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.945);
  }

  .texto1 h1 span {
    font-size: 3rem;
  }

  .texto1 h2 {
    font-size: 1rem;
    font-weight: bolder;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.979);
  }
}
