body {
  font-family: Arial, sans-serif;
  background: #f4f4fc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  color: #fff;
}

.container {
  background: #525050;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 10px rgba(22, 21, 21, 0.1);
}

h1 {
  margin-bottom: 15px;
}

label {
  display: block;
  text-align: left;
  margin: 10px 0 5px;
}

input, select, button {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
}

input, select {
  background: #2b2b2b;
  color: #fff;
}

button {
  background: #2563eb;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #1d4ed8;
}
