.body-1-form {
  margin-top: 2rem;
  background-color: white;
  padding: 1rem;
  background-color: #f3f3f3;
  -webkit-box-shadow: 1.5px 2.5px 8.5px 2.5px #d5d5d5;
  -moz-box-shadow: 1.5px 2.5px 8.5px 2.5px #d5d5d5;
  box-shadow: 1.5px 2.5px 8.5px 2.5px #d5d5d5;
}

.body-1-form h4,
.body-1-form p {
  text-align: center;
}

.body-1-form h4 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.35;
}

.body-1-form h4 span {
  color: #00027b;
  font-weight: 700;
  font-size: 1.65rem;
}

.form-group-container {
  margin: 1.5rem 0;
}

.section-input {
  display: flex;
  justify-content: space-around;
  background-color: white;
  margin: 0.85rem 0;
  padding: 0.65rem;
  max-height: 45px;
  border: 1px solid #cacaca;
}

.section-input input {
  margin-right: 0.5rem;
  max-width: 85%;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
}

.section-input input:focus,
.section-input select:focus {
  border: 0px solid transparent;
  outline: none;
}

.section-input input,
.section-input select {
  border: 0px solid transparent;
  flex: 1;
  background-color: transparent;
}

.section-input input::placeholder,
.section-input select {
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
}

.section-select,
.section-select option {
  color: black;
  max-width: 100%;
}

.section-select:invalid,
.section-select option[value=""] {
  color: rgb(var(--dark-grey));
}

#phone {
  max-width: 65%;
}

/* condiciones */
.condiciones {
  font-size: 0.8rem;
}

.section-6-terminos {
  max-height: 80px;
  overflow-y: scroll;
  -ms-scrollbar-width: auto;
  scrollbar-width: auto;
}

.terminosCondiciones p,
.terminosCondiciones span {
  text-align: left;
  font-size: 0.625rem;
}

/* Textarea */
/* textarea */

.section-mensaje {
  max-height: 100% !important;
}

.casoBecas {
  border: transparent;
  font-size: 0.85rem;
  max-width: 100%;
}

.casoBecas:focus {
  outline: none;
}

/* condiciones */
.condiciones {
  font-size: 0.8rem;
  text-align: left;
}

/* botón */
.form-btn-becas {
  border: 0;
  color: white;
  background-color: #07152f;
  /* border-radius: 8px; */
  padding: 0.5rem 1rem;
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  margin: 1.5rem auto;
  width: 85%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.form-btn-becas:hover {
  color: #ffffff;
  transform: scale(1.05);
  outline: 2px solid #ffffff;
  box-shadow: 4px 5px 17px -4px #07152f;
}

.form-btn-becas::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #fbc009;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 600ms;
}

.form-btn-becas:hover::before {
  width: 250%;
}

@media screen and (min-width: 375px) {

  /* -- ###  CONTAINER SECTION 6  */
  .section-input input,
  #phone {
    max-width: 100%;
  }

  /* -- ### FIN CONTAINER SECTION 6  */
}

@media only screen and (min-width: 768px) {


  .body-1-form {
    margin: 2rem auto;
    max-width: 550px;
  }


  #pais,
  #estudios {
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) {

  .section-input {
    margin: 0.86rem 0 0 0;
  }

  .form-group-container {
    padding: 0 1rem;
  }

  .form-group-names {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .condiciones {
    padding: 0 1rem;
  }

  .section-input input,
  #phone {
    width: 100%;
  }
}

@media screen and (min-width: 1280px) {
  .body-1-form {
    align-items: center;
  }
}