.partner-form {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 34px auto 0;
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.consent-row {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(79, 22, 143, 0.14);
  border-radius: 18px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(124, 43, 217, 0.48);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(124, 43, 217, 0.10);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex: 0 0 auto;
}

.consent-row a {
  color: var(--primary-dark);
  font-weight: 850;
}

.form-note {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--muted-soft);
  font-size: 14px;
  text-align: center;
}

.partner-form .button {
  width: fit-content;
  min-width: 260px;
  border: 0;
  cursor: pointer;
  justify-self: center;
  margin-top: 8px;
}

.botcheck {
  display: none !important;
}

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .partner-form .button {
    width: 100%;
  }
}
