body {
  font-family: 'Poppins', sans-serif;
  background-color: #0D0D0D;
  color: #b21b73;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px; 
}


.container {
  background: black;
  border: 2px solid #b21b73;
  padding: 30px;
  border-radius: 15px;
  width: 400px;
  text-align: center;
}

h1 {
  color: #eb3ca2;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, select, button {
  padding: 10px;
  border: none;
  border-radius: 8px;
  outline: none;
}

input, select {
  background-color: #222;
  color: white;
}

button {
  background-color: #b21b73;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #ff33a0;
}

.result {
  margin-top: 20px;
  padding: 15px;
  border-top: 1px solid #b21b73;
  color: #fff;
  font-size: 1.1em;
}

footer {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9em;
  color: #de3a99; 
}

footer a {
  color: #95b3eb; 
  text-decoration: none;
  font-weight: bold;
}

