/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full-page layout */
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #4a90e2, #1c3b70);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #fff;
}

/* Heading */
h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

/* Signup form */
form {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  width: 300px;
}

/* Input fields */
form input {
  margin-bottom: 15px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
  font-size: 1rem;
}

/* Button styles */
form button {
  padding: 10px;
  background: #ffcc00;
  color: #333;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background: #e6b800;
}

/* Switch link */
.switch {
  margin-top: 15px;
  font-size: 0.9rem;
}

.switch button {
  background: none;
  border: none;
  color: #ffcc00;
  cursor: pointer;
}

.switch button:hover {
  text-decoration: underline;
}
