.contact-card {
  max-width: 720px;
  gap: 28px;
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-header h2 {
  font-size: 24px;
  font-weight: 700;
}

.contact-header p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  background: var(--surface2);
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: var(--input-focus-bg);
}

.contact-field textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.7;
}

.contact-feedback {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.contact-feedback.is-success {
  color: var(--ok);
  background: var(--ok-bg);
  border: 1px solid var(--ok-border);
}

.contact-feedback.is-error {
  color: var(--ng);
  background: var(--ng-bg);
  border: 1px solid var(--ng-border);
}

.contact-actions {
  display: flex;
  justify-content: flex-end;
}

.contact-actions .auth-btn {
  min-width: 180px;
}

@media (max-width: 720px) {
  .contact-card {
    padding: 28px 20px;
  }

  .contact-actions .auth-btn {
    width: 100%;
  }
}
