* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.login-box {
  background: white;
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 380px;
}

.login-box h2 {
  margin: 0 0 24px;
  font-size: 1.5em;
  text-align: center;
  color: #343a40;
}

.login-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #495057;
}

.login-box input[type="text"],
.login-box input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 1em;
}

.login-box button {
  width: 100%;
  padding: 10px 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.login-box button:hover {
  background-color: #0056b3;
}

.login-box .error {
  color: #dc3545;
  margin-bottom: 12px;
  text-align: center;
  display: none; /* Show this when there's a login error */
}

.login-box .register-link {
  text-align: center;
  margin-top: 16px;
  font-size: 0.95em;
}

.login-box .register-link a {
  color: #007bff;
  text-decoration: none;
}

.login-box .register-link a:hover {
  text-decoration: underline;
}
