* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --surface-2: #1a1a24;
  --border: #2a2a3a;
  --text: #e8e8f0;
  --text-dim: #6b6b80;
  --green: #00C896;
  --green-dim: #00a07a;
  --red: #ff4757;
  --amber: #ffa502;
}

body {
  font-family: 'Courier New', Courier, monospace;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.95); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0,200,150,0.3); }
  50% { box-shadow: 0 0 40px rgba(0,200,150,0.6); }
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  animation: fadeIn 0.3s ease;
}

.btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--green);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  min-height: 52px;
}

.btn:hover { background: var(--green-dim); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-outline:hover { border-color: var(--green); color: var(--green); background: transparent; }

.field-group { margin-bottom: 16px; }

label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
}

input:focus, select:focus { border-color: var(--green); }

select option { background: var(--surface-2); }

.error-msg {
  font-size: 11px;
  color: var(--red);
  margin-top: 4px;
  min-height: 16px;
}

.consent-text {
  font-size: 11px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  input, select { font-size: 16px; }
  .btn { min-height: 52px; }
}
