/* public/css/styles.css */

.label {
  margin-bottom: 1.5rem;
}

.container {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  margin-top: 7%;
  border-color: #5543ca;
}

.get-in-touch {
  max-width: 800px;
  margin: 50px auto;
  position: relative;
}

.get-in-touch .title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 3.2em;
  line-height: 48px;
  padding-bottom: 48px;
  color: #475dbb;
  background: #5543ca;
  background: -moz-linear-gradient(left, #f4524d 0%, #5543ca 100%) !important;
  background: -webkit-linear-gradient(left, #f4524d 0%, #5543ca 100%) !important;
  background: linear-gradient(to right, #f4524d 0%, #5543ca 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.form-field {
  position: relative;
  margin: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-field .alert {
  position: absolute;
  bottom: -70px;
  left: 10;
  width: 90%;
}

.contact-form .form-field {
  position: relative;
  margin: 32px 0;
}

.contact-form .input-text {
  display: block;
  width: 100%;
  height: 36px;
  border-width: 0 0 2px 0;
  border-color: #5543ca;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

.contact-form .input-text:focus {
  outline: none;
}

.contact-form .input-text:focus + .label,
.contact-form .input-text.not-empty + .label {
  transform: translateY(-24px);
}

.contact-form .label {
  position: absolute;
  left: 20px;
  bottom: 11px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #5543ca;
  cursor: text;
  transition: transform .2s ease-in-out;
}

.form-field label {
  margin-bottom: 17px;
}

.form-field-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px; /* Ajuste el margen superior aquí según sea necesario */
}

.form-field-1 .checkbox-wrapper {
  margin-left: 20px; /* Ajuste el margen izquierdo del wrapper del checkbox */
}

@media screen and (max-width: 480px) {
  .get-in-touch {
      max-width: 90%;
      margin: 50px auto;
  }
  
  .title {
      font-size: 2em;
  }

  .form-field {
      margin-bottom: 1rem;
  }

  .input-text {
      height: 32px;
      font-size: 16px;
  }

  .submit-btn {
      width: 100%;
  }
}
