* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #1a1a2e; /* Modern Dark Theme */
}

.container {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #1a1a2e;
}

p {
  font-size: 14px;
  margin-bottom: 5px;
  color: #555;
}

input, select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}

.dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.select-container {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 5px 10px;
  background: #f9f9f9;
}

.select-container img {
  width: 25px;
  margin-right: 8px;
}

.select-container select {
  border: none;
  background: transparent;
  width: auto;
  padding: 5px;
}

.msg {
  margin: 20px 0;
  font-weight: 600;
  color: #333;
  text-align: center;
}

button {
  width: 100%;
  padding: 15px;
  background: #6c63ff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #5146d9;
}
