.form-def {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.form-def__input::placeholder {
  color: #ffffff4d;
}

.form-def__input {
  color: #fff;
  padding: 16px 24px;
  border-radius: 36px;
  border: 1px solid #ffffff4d;
  background: none;
  width: 100%;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-def__input:focus,
.form-def__input:active {
  border-color: #fff;
}

.form-def__field {
  margin-bottom: 15px;
}

.form-def__field label {
  color: #fff;
  font-size: 14px;
}

.form-def__field label a {
  color: #c6d202;
}

.form-def__btn [type='submit'] {
  background-color: #c6d202;
  border: 1px solid #c6d202;
  color: #fff;
  font-size: 14px;
  border-radius: 36px;
  display: inline-flex;
  justify-content: center;
  padding: 16px;
  width: 100%;
  transition: all 0.3s ease;
}

.form-def__btn [type='submit']:disabled,
.form-def__btn [type='submit']:disabled:hover {
  background: rgba(255, 255, 255, 0.5411764706);
  border-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(15px);
  color: rgba(0, 0, 0, 0.368627451);
}

.form-def__btn [type='submit']:hover {
  background-color: #fff;
  color: #c6d202;
}

.form-def__checkbox {
  display: none;
}

.form-def__field--checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 0.6875rem;
  cursor: pointer;
  max-width: 100%;
}

.form-def-custom-check {
  flex: none;
  align-self: baseline;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.25rem;
  margin: 0.1875rem;
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
}

.form-def-custom-check svg {
  display: none;
}

.form-def__checkbox:checked ~ .form-def-custom-check {
  background: #c6d202;
  border-color: #c6d202;
}

.form-def__checkbox:checked ~ .form-def-custom-check svg {
  display: block;
}

.form-success {
  color: #fff;
}

@media (min-width: 768px) {
  .form-def__input {
    font-size: 16px;
  }

  .form-def__field label {
    font-size: 16px;
  }

  .form-def__btn [type='submit'] {
    font-size: 16px;
  }

  .od-new__form {
    width: 50%;
  }
}
