* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #111, #000);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.container {
  width: 100%;
  padding: 20px;
}

.card {
  max-width: 1100px;
  margin: auto;
  background: rgba(15,15,15,0.9);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 80px rgba(255,0,0,0.15);
  animation: fadeUp 1s ease;
}

h1 {
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.sub {
  text-align: center;
  color: #ff3b3b;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #333;
  background: #0a0a0a;
  color: #fff;
  font-size: 14px;
}

textarea {
  grid-column: 1 / -1;
  resize: none;
  height: 90px;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #ff3b3b;
  box-shadow: 0 0 10px rgba(255,59,59,0.3);
}

button {
  width: 100%;
  margin-top: 25px;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff0000, #b00000);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255,0,0,0.4);
}

.status {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

@keyframes fadeUp {
  from {opacity:0; transform:translateY(30px);}
  to {opacity:1; transform:translateY(0);}
}
