* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to right, #2c3e50, #3498db);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
}

.form-box {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-box h2 {
  margin-bottom: 1rem;
  color: #2c3e50;
  text-align: center;
}

input {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

button {
  width: 100%;
  background-color: #3498db;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #2980b9;
}

#toggle-text {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

#toggle-text a {
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
}

#toggle-text a:hover {
  text-decoration: underline;
}

#status-msg {
  margin-top: 1rem;
  text-align: center;
  color: red;
  font-size: 0.9rem;
}
