body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #f0f4f8;
  margin: 0;
}

.container {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 300px;
}

h2 {
  text-align: center;
}

input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  width: 100%;
  padding: 10px;
  background: #2e89ff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.toggle {
  margin-top: 1rem;
  text-align: center;
}

.toggle a {
  color: #2e89ff;
  cursor: pointer;
  text-decoration: underline;
}
