body {
  background: linear-gradient(to bottom, #fceabb, #f8b500);
  font-family: 'Comic Sans MS', cursive, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-container {
  background: #fff8dc;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  text-align: center;
  width: 300px;
}

h1 {
  color: #ff69b4;
  margin-bottom: 0.5rem;
}

.prompt {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

input {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 1rem;
  border: 2px solid #ff69b4;
  border-radius: 8px;
  font-size: 1rem;
}
.password-wrapper {
  position: relative;
}
#togglePassword {
  position: absolute;
  right: 10px;
  top: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
}
button[type="submit"] {
  background-color: #ff69b4;
  color: white;
  border: none;
  padding: 0.7rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}
#message {
  margin-top: 1rem;
  color: green;
}
