form * {
  box-sizing: border-box;
}

.active-form {
  padding: 0px;
  position: relative;
  width: 100%;
}

.form {
  max-width: 80%;
  margin: 0 auto;
}

.active-form input[type='text'],
.active-form input[type='email'] {
  margin:-5px 0px;
  background: transparent;
  font-size: 20px;
  color: #f4ed91;
  font-weight: 400;
  width: 100%;
  border: 1px solid #f4ed91;
  font-family: Arial, Sans-serif;
  padding: 15px 18px;
  vertical-align: middle;
  line-height: 1.4;
  min-height: 40px;
  border-radius: 5px;
  box-shadow: 0 0 0 3px rgb(0 0 0 / 5%);
}

.active-form input::placeholder {
  color: #f4ed91;
  font-family: Arial, Sans-serif;
  font-size: 20px;
  font-weight: 400;
}

._form-label {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

.btn-submit {
  font-size: 30px;
  padding: 10px;
  font-weight: bold;
  width: 100%;
  color: #1b1b2f;
  border-radius: 8px;
  width: 100%;
}

@media(max-width: 767px) {
  .active-form input[type='text'],
.active-form input[type='email'] {
  font-size: 16px;
  padding: 10px;
}

.active-form input::placeholder {
  font-size: 16px;
}
  .btn-submit {
    font-size: 22px;
    padding: 5px;
  }
  .form .flex.flex-col.space-between.gap-1 {
    margin-top: 1rem !important;
  }
}