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

body {
  font-family: 'Segoe UI', sans-serif;
  background: #415a72;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.ticket-container {
  width: 100%;
  max-width: 500px;
  padding: 20px;
}

.ticket-form-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(227, 214, 214, 0.05);
}

.ticket-form-card h2 {
  margin-bottom: 10px;
  color: #1e293b;
}

.ticket-form-card p {
  margin-bottom: 20px;
  color: #475569;
  font-size: 14px;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #09306b;
  border-radius: 8px;
  font-size: 14px;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

form select {
  background-color: white;
}

button[type="submit"] {
  background-color: #041e58;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

button[type="submit"]:hover {
  background-color: #1d4ed8;
}

.success {
  margin-top: 10px;
  color: green;
  font-weight: 500;
  font-size: 14px;
}
