.form-input {
  flex: 1;
  background-color: var(--input-background);
  border: 1px solid var(--input-border);
  border-radius: 8px;
  min-height: 56px;
  max-height: 56px;
  width: 100%;
  color: var(--white);
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: 32px;
  padding-left: 20rem;
  padding-right: 20rem;
  transition: border 1s var(--curve);
}

.form-input::placeholder {
  color: var(--gray);
}

.form-input:focus, .form-input:hover {
  border: 1px solid #C0C0C0;
}


.form-input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  height: fit-content;
  margin: 0;
  width: 18rem;
  height: 18rem;
  min-height: unset;
  max-width: 18rem;
  min-width: 18rem;
  border-radius: 3rem;
  border: 1px solid var(--checkbox-border);
  padding: 0;
}


.form-input[type="checkbox"]:hover {
  cursor: pointer;
}


.form-input[type="checkbox"]:checked {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px 10px;
  background-color: var(--green);
  border-color: var(--green);
  background-image: url('./../../img/icons/ico-checkmark-dark.svg');
}

.form-input-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  gap: 17rem;
  max-height: fit-content;
  height: fit-content;
}


.form-input-container.check {
  display: flex;
  flex-direction: row;
  align-items: center;

}


.form-input-container .error-message-label {
  margin: 0;
  color: var(--error-red);
  font-size: 14rem;
}


.form-input-container .field-requirements {
  display: flex;
  flex-direction: column;
  gap: 3px;
}


.form-input-container .field-requirements .field-requirement {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 0;
}


.form-input-container .field-requirements .req-completed {
  color: var(--green);
}


.form-input-container .field-requirements .completed-mark {
  display: none;
  width: 17px;
  height: 17px;
}


.form-input-container .field-requirements .req-completed .completed-mark {
  display: flex;
}


.phone-field {
  display: flex;
  background-color: var(--input-background);
  border: 1px solid var(--input-border);
  gap: 0;
  width: 100%;
  border-radius: 8px;
  height: 56px;
  position: relative;
  transition: border 1s var(--curve);
  &:hover {
    border: 1px solid var(--white);
  }
}


.phone-field select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  border: none;
  background-color: transparent;
  padding-left: 13px;
  padding-right: 13px;
  border-right: 1px solid var(--input-border);

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('./../../img/arrows/arrow-dropdown-down-white.svg') no-repeat right 15px center;
  background-size: 14px 14px;
  padding-right: 19px;
  color: var(--title-color);
  option {
    color: black;
  }
}


.phone-field input {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  flex: 1;
  height: 100%;
  border: none;
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--title-color);
}

.phone-field input:focus {
  border: none;
  outline: none;
}
.select-field {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('./../../img/arrows/arrow-dropdown-down-white.svg');
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: right 15px center;
}
@media (max-width: 580px) {
  .form-input {
    min-height: 44px;
    max-height: 44px;
    font-size: 18px;
    line-height: 0.9;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
  }
  .phone-field {
    height: 44px;
  }
}