.form-input {
  background-color: var(--gray-400);
  border-radius: 20px;
  border: 1px solid transparent;
  color: var(--gray-500);
  font-size: 18px;
  height: 55px;
  outline: none;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
}

textarea.form-input {
  height: auto;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.form-select-outline:focus-within,
.form-input:focus-within,
.form-input-outline:focus-within,
.form-input-outline:focus,
.form-input:focus {
  box-shadow: 0 0 8px var(--gray-200);
}

.form-label {
  cursor: pointer;
  display: block;
}

label {
  font-weight: 600;
}

.form-select-outline,
.form-input-outline {
  align-items: center;
  background-color: var(--white);
  border: 1px solid var(--gray-700);
  color: var(--black);
  display: flex;
  font-size: 16px;
  height: 40px;
  outline: none;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: 100%;
}

@media (min-width: 1200px) {
  .form-select-outline,
  .form-input-outline {
    font-size: 18px;
  }
}

.form-select-outline select,
.form-input-outline input {
  background-color: var(--white);
  border: none;
  color: var(--black);
  font-size: 16px;
  outline: none;
  width: 100%;
}

@media (min-width: 1200px) {
  .form-input-outline input {
    font-size: 18px;
  }
}

textarea.form-input-outline {
  height: auto;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.form-select-outline {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='12' viewBox='0 0 21 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.63702 11.2035L0.753271 2.41264C0.290576 2.00057 0.290576 1.31378 0.753271 0.855928C1.1697 0.443857 1.86374 0.443857 2.32644 0.855928L10.4236 8.9142L18.5208 0.901714C18.9372 0.443857 19.6312 0.443857 20.0939 0.901714C20.5104 1.31378 20.5104 2.00057 20.0939 2.41264L11.1639 11.2035C10.7475 11.6613 10.0534 11.6613 9.63702 11.2035Z' fill='black'/%3E%3C/svg%3E%0A");
  background-position: 98%;
  background-repeat: no-repeat;
  background-size: 15px;
  cursor: pointer;
  padding-left: 1rem;
  padding-right: 1.5rem;
}
