body {
  font-family: Arial, sans-serif;
  background: #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 300px;
}

h1 {
  text-align: center;
}

.input-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  width: 100%;
  padding: 10px;
  background: radial-gradient(circle at 80% 30%, #f4cb38 0%, #f2c635 35%, #fff6db 100% );
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #525252;
}

#toggle-text {
  text-align: center;
  margin-top: 10px;
}

#toggle-link {
  color: #2563eb;
  cursor: pointer;
}

#message {
  margin-top: 10px;
  color: green;
  font-weight: bold;
  text-align: center;
}


