* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f1115;
  color: #e8e8e8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.card {
  width: 100%;
  max-width: 420px;
  padding: 32px;
  background: #1a1d24;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

h1 {
  margin: 0 0 4px;
  font-size: 1.5rem;
}

.subtitle {
  margin: 0 0 20px;
  color: #9aa0aa;
  font-size: 0.9rem;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #333844;
  background: #12141a;
  color: #e8e8e8;
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  resize: vertical;
}

input {
  margin-top: 10px;
}

.buttons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

button {
  flex: 1;
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: opacity 0.15s;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#send-email {
  background: #d44638;
}

#send-discord {
  background: #5865f2;
}

.status {
  margin-top: 14px;
  font-size: 0.85rem;
  min-height: 1.2em;
}
