/* CONTACT FORM ISOLATED DEBUG CSS */

:root {
  --bg-main: #020617;
  --bg-card: #0f172a;
  --text-main: #e5e7eb;
  --text-soft: #94a3b8;
  --accent: #22c55e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #020617, #000);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card {
  background: var(--bg-card);
  padding: 64px 48px;
  border-radius: 28px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}

.contact-card h1 {
  margin-top: 0;
  margin-bottom: 16px;
}

.intro {
  color: var(--text-soft);
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
}

.contact-form input,
.contact-form textarea {
  background: #020617;
  color: var(--text-main);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(34,197,94,0.25);
}

.contact-form button {
  margin-top: 20px;
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: var(--accent);
  color: #052e16;
  font-weight: 800;
  cursor: pointer;
}

.note {
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-soft);
}
