main {
  position: relative;
  padding: 1em;
}
main > h2 {
  text-align: center;
  padding: 1em;
}

span,
label {
  display: inherit;
}
p {
  color: #000;
  font-size: 1rem;
  margin: 5px;
}
form small {
  text-align: start;
}
.busquedas-recurrentes h1,
h2,
h3,
h4 {
  color: initial;
}
textarea {
  resize: vertical;
}
.presentacion {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #eeeeee;
}

.presentacion ul {
  list-style: circle;
}
.presentacion ul li {
  margin-bottom: 0.5em;
}

.presentacion h2 {
  font-size: 3rem;
}

.presentacion h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.busquedas-recurrentes {
  margin-top: 1em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1em;
  padding: 1em;
  border: 1px solid #505050a8;
}

.busquedas-recurrentes button {
  border-radius: 0;
  width: 100px;
  height: 20px;
  font-size: 0.8rem;
  padding: 1em;
}

.enviar-datos {
  flex-direction: column;
  align-items: center;
  padding: 1em;
  display: flex;
  justify-content: center;
  width: 100%;
}

.enviar-datos form {
  width: 50%;
  background-color: #eee;
  display: flex;
  flex-direction: column;
  padding: 1.5em;
  gap: 1em;
  border: 4px solid #fff;
  border-radius: 3px;
}
.enviar-datos form span {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  width: 100%;
  justify-content: flex-start;
}
.enviar-datos form input,
select {
  padding: 0.5em;
  border: none;
  outline: none;
  border-bottom: 1px solid #222;
}

.enviar-datos form input[type="file"] {
  border: 1px solid #222;
}

.enviar-datos button {
  border-radius: 0;
  box-shadow: 1px 1px 5px #222;
}
.enviar-datos button:active {
  transform: scale(0.9);
}

.modal-load {
  width: 100%;
  position: fixed;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #302e2ee3;
  content-visibility: auto;
  z-index: -1;
  p {
    color: #eee;
  }
  span {
    content: "";
    padding: 1em;
    border: 2px solid #ddd;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border-top-color: transparent;
    animation: load 0.34s infinite linear;
  }
}

.modal-load-active {
  z-index: 1;
  display: flex;
}

.modal-email {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: 1px solid #222;
  margin: auto;
  inset: 0;
  background-color: #e9e9e9c1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  .info {
    background-color: #fff;
    padding: 1rem;
    width: 70%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    a {
      padding: 1rem;
      border: 1px solid #202020;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      width: 2rem;
      height: 2rem;
    }

    h2 {
      font-size: 2.5rem;
    }
    p {
      font-size: 1.5rem;
    }
  }
}

@keyframes load {
  to {
    transform: rotate(360deg);
  }
  from {
    transform: rotate(0deg);
  }
}

@media only screen and (max-width: 750px) {
  .presentacion {
    width: 100%;
  }
  .presentacion h2 {
    text-align: center;
    font-size: 1.5rem;
  }

  .presentacion h3 {
    font-size: 1rem;
  }
  .presentacion p {
    font-size: 0.8rem;
  }
  .presentacion ul li {
    font-size: 0.8rem;
  }

  main {
    padding: 0;
  }
  .busquedas-recurrentes {
    flex-direction: column;
    padding: 0.5em;
  }

  .lista-busquedas-recurrentes,
  .enviar-datos {
    width: 100%;
  }

  .busquedas-recurrentes .lista-busquedas-recurrentes > ul {
    height: 50vh;
    overflow: hidden;
    overflow-y: scroll;
    justify-content: center;
    padding: 1;
  }
  .lista-busquedas-recurrentes ul > li {
    width: 95%;
  }
  .lista-busquedas-recurrentes .info-modal-active {
    width: 80%;
  }
  .lista-busquedas-recurrentes .forms-postular-active,
  .forms-postular-active form {
    width: 100%;
  }
  .enviar-datos form {
    width: 100%;
  }
}
