body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #f5f5f5;
  padding-top: 100px; /* Navbar space */
}

.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.auth-card {
  width: 370px;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.auth-card h2 {
  margin-bottom: 22px;
  font-weight: 600;
}

.auth-group {
  text-align: left;
  margin-bottom: 18px;
}

.auth-group label {
  font-size: 14px;
  font-weight: 600;
}

.auth-group input,
.auth-group select,
.auth-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-top: 6px;
  font-size: 15px;
  box-sizing: border-box;
}

/* Django form fields (like {{ form.username }}) are inputs too */
.auth-group input[type="text"],
.auth-group input[type="password"] {
  box-sizing: border-box;
}

.auth-btn {
  width: 100%;
  padding: 12px;
  background: #111;
  color: white;
  border: none;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
  font-size: 15px;
}

.auth-btn:hover {
  background: #000;
}

.auth-footer {
  margin-top: 18px;
  font-size: 14px;
}

.auth-footer a {
  color: #0073ff;
  text-decoration: none;
}

/* ==========================================================
   ERROR UI FIX (NO BULLETS, CLEAN ALIGNMENT)
========================================================== */
.auth-errors {
  background: #ffe6e6;
  border: 1px solid #ff9999;
  padding: 12px 14px;
  border-radius: 8px;
  margin: 12px 0 16px 0;
  font-size: 14px;
  text-align: left;
}

.auth-errors-title {
  margin: 0 0 8px 0;
  font-weight: 700;
}

.auth-error-item {
  margin: 6px 0;
  line-height: 1.4;
}

/* Remove Django default ul/li bullets inside errors */
.auth-errors ul {
  margin: 8px 0 0 0;
  padding-left: 0;
  list-style: none;
}

.auth-errors li {
  margin: 6px 0;
}
