.modal-card {
  padding: 32px 36px;
}

.modal-card h1 {
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.modal-card label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #666;
  margin-bottom: 6px;
  margin-top: 16px;
}

.text-field, .text-field-2 {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  transition: border-color 0.15s ease;
}

.text-field:focus, .text-field-2:focus {
  outline: none;
  border-color: #ffa901;
}

.submit-button {
  border-radius: 8px;
  width: 100%;
  margin-top: 24px;
  cursor: pointer;
  border: none;
  transition: background-color 0.15s ease;
}

.submit-button:hover {
  background-color: #e69800;
}

.modal-close {
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: background-color 0.15s ease;
}

.modal-close:hover {
  background-color: #f2f2f2;
}

.modal-close .text-block-2 {
  font-size: 14px;
  color: #333;
}

.w-form-done, .w-form-fail {
  display: none;
  text-align: center;
  padding: 20px 0;
  font-weight: 600;
}

.w-form-done.is-visible, .w-form-fail.is-visible {
  display: block;
}

.w-form-fail {
  color: #b91c1c;
}
