/* ── CONTACT FORM ── */
.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  text-align: left;
}

.btn-submit {
  background: var(--accent);
  color: #000;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: .2s;
  box-shadow: 0 0 30px rgba(0, 245, 196, 0.3);
  margin-top: 0.5rem;
}

.btn-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}





