body {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 20px;
}



.container {
  max-width: 700px;
  margin: auto;
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
  color: #ff6600;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  background-color: #2c2c2c;
  border: 1px solid #555;
  color: #fff;
  border-radius: 8px;
  margin-top: 8px;
  transition: 0.3s ease;
  height: 44px; /* Or whatever matches your input height */
  box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
  border-color: #ff6600;
  outline: none;
}

button {
  margin-top: 25px;
  padding: 14px;
  width: 100%;
  background: linear-gradient(to right, #ff6600, #ff9900);
  border: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background: linear-gradient(to right, #e65c00, #ffa31a);
}
.hidden {
  display: none;
}

.confirmation {
  max-width: 600px;
  margin: 40px auto;
  background-color: #1e1e1e;
  border: 2px solid #ff6600;
  padding: 30px;
  text-align: center;
  border-radius: 16px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.confirmation h3 {
  color: #ff9900;
  margin-bottom: 15px;
}

