.form__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: calc(100vh - 136px);
  padding-bottom: 2rem;

  background-color: var(--secondary-color);
}

.form__container {
  width: 100%;
  max-width: 768px;
  padding: 1.5rem;
  margin: 0 .75rem;

  border-radius: 12px;
  background-color: var(--text-color-light);
}

.form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  margin-bottom: 1rem;
}

.header__title {
  font-size: 1.5em;
  font-weight: 600;
}

.form__close {
  transform: rotate(45deg);

  opacity: .5;
  cursor: pointer;
}

.close__icon {
  font-size: 1.75em;
}

.form__contact {
  display: flex;

  font-size: 1.15em;

  padding-bottom: 1rem;
}

.form__input {
  display: flex;
  flex-direction: column;
  gap: .5rem;

  margin-bottom: .75rem;
}

.input__label {
  font-size: 1.15em;
}

.input__label .label__important {
  color: #b90202;
}

.input__field {
  font-size: 1em;

  padding: .5rem;

  border-radius: 6px;
  border: 1px solid #b4b3b3;
}

.input__area {
  font-size: 1em;

  height: 128px;
  padding: .5rem;

  border-radius: 6px;
  border: 1px solid #b4b3b3;

  resize: none;
}

.form__select {
  display: flex;
  flex-direction: column;
  gap: .5rem;

  position: relative;

  margin-bottom: .75rem;
}

.form__select .select__title {
  font-size: 1.15em;
}

.form__select .select__value {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  height: 37px;
  padding: 0 .5rem;

  border-radius: 6px;
  border: 1px solid #b4b3b3;

  cursor: pointer;
}

.form__select .select__value .value__text {

}

.form__select .select__value .value__icon {
  width: 16px;
}

.form__select .select__dropdown {
  display: none;
  gap: .25rem;

  position: absolute;
  top: 68px;
  left: 0;

  width: 100%;
  padding: .5rem;

  border-radius: 6px;
  border: 1px solid #b4b3b3;
  background-color: var(--text-color-light);
}

.select__dropdown.active {
  display: flex;
}

.form__select .select__dropdown .dropdown__button {
  width: 100%;
  height: 32px;

  border-radius: .25rem;

  transition: all ease-in-out .15s;
  cursor: pointer;
}

.form__select .select__dropdown .dropdown__button:hover {
  background-color: rgba(180, 179, 179, 0.15);
}

.form__select .select__dropdown .dropdown__button .button__title {
  font-size: 1.1em;
}

.form__submit {
  width: 100%;
  height: 48px;

  border-radius: 8px;
  background-color: var(--main-color);
}

.form__submit .submit__title {
  font-weight: 600;
  font-size: 1.25em;

  color: var(--text-color-light);
}

@media screen and (max-width: 675px) {
  .form__select .select__dropdown {
    flex-direction: column;

    top: 90px;
  }
}
