body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: #ffffff10;
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 40px 30px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  text-align: center;
}

.logo {
  width: 100px;
  margin-bottom: 10px;
}

h2 {
  margin-bottom: 20px;
}

form input, form select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

form button {
  width: 100%;
  padding: 12px;
  background-color: #1abc9c;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #16a085;
}

#message {
  margin-top: 10px;
  font-size: 14px;
}

.footer-link {
  margin-top: 15px;
  font-size: 14px;
}

.footer-link a {
  color: #1abc9c;
  text-decoration: none;
}

footer {
  margin-top: 20px;
  font-size: 12px;
  color: #ccc;
}