/* Estilos Generales
*--------------------------------
*/

input {
  width: 100%;
}

button,
input {
  background: none;
  border: none;
}


body {
  position: relative;
}

.formularioEntrada {
  height: 100vh;
  /* min-height: 1050px; */
  max-height: 1050px;
  overflow: auto;
  overflow-y: auto;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  background: linear-gradient(270.02deg, rgba(0, 87, 69, 0.7) 30.24%, rgba(0,
        87,
        69,
        0.7) 66.63%);
  background-position: bottom;
  display: flex;
  top: 0%;
  right: -100%;
  align-items: center;
  padding: 127px 13% 50px 45px;
}

.formularioEntrada h4 {
  font-size: 54px;
  width: 851px;
  margin-bottom: 180px;
  color: white !important;
  line-height: 65px;
  font-family: 'Gothic A1', sans-serif;
}

.formularioEntrada .formulario {
  position: relative;
}

.formularioEntrada.view {
  right: 0;
  animation: slideIn .3s ease;
  /* Transición para suavizar el movimiento */
}

@keyframes slideIn {
  0% {
    right: -100%;
    /* Posición inicial */
  }

  100% {
    right: 0;
    /* Posición final */
  }
}

*,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.mitad {
  position: relative;
  width: 47%;
}

strong {
  font-weight: 900;
}

section {
  padding: 150px 100px;
}

@media only screen and (max-width: 992px) {
  section {
    padding: 20px 0;
  }
}

@media only screen and (max-width: 480px) {
  section {
    padding: 10px 0;
  }
}

h1 {
  font-family: 'Gothic A1', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
}

h2 {
  font-family: 'Gothic A1', sans-serif;
  font-size: 20px;
  color: #000000;
}

p {
  letter-spacing: 1px;
  font-family: 'Gothic A1', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 32px;
  padding: 6px 0
}

span {
  font-family: 'Gothic A1', sans-serif;
}

/* No cambiar el color aquí ya que cambiará también en los modales de políticas */

@media only screen and (max-width: 992px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 17px;
  }
}

@media only screen and (max-width: 768px) {
  section {
    padding: 55px 30px;
  }
}

@media only screen and (max-width: 480px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 15px;
  }
}

a,
a:hover {
  color: inherit;
  text-decoration: none;
}