* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(135deg, #7F00FF, #E100FF);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #fff;
}

.container {
  background-color: #2a2a2a;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.container h1 {
  margin-bottom: 20px;
  font-size: 28px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  background-color: #444;
  color: white;
  font-size: 14px;
}

button {
  background-color: #a200ff;
  color: white;
  padding: 12px;
  margin-top: 15px;
  border: none;
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #8700cc;
}

.toggle {
  margin-top: 20px;
  font-size: 14px;
}

.toggle a {
  color: #b37eff;
  text-decoration: none;
  font-weight: 600;
}

.toggle a:hover {
  text-decoration: underline;
}
