* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(135deg, #020617, #0f172a);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
}

.container {
  background: #020617;
  width: 100%;
  max-width: 460px;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

h1 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 6px;
}

.subtitle {
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 30px;
}

label {
  font-size: 13px;
  margin-top: 18px;
  display: block;
  color: #cbd5f5;
}

input,
select,
textarea {
  width: 100%;
  background: #020617;
  border: 1px solid #1e293b;
  color: #e5e7eb;
  padding: 12px;
  border-radius: 10px;
  margin-top: 6px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #38bdf8;
}

textarea {
  resize: none;
  height: 90px;
}

button {
  margin-top: 30px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  border: none;
  border-radius: 14px;
  color: #020617;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

#status {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
}