body.auth-body {
  background: #222;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.auth-container {
  background: #2a2a2a;
  padding: 40px;
  border-radius: 12px;
  width: 360px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  color: white;
}

.auth-container h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 22px;
}

.auth-container label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
}

.auth-container input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #1f1f1f;
  color: white;
  font-size: 14px;
}

.auth-container button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #1a40ff;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.auth-container button:hover {
  background-color: #0037dd;
}

.auth-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
}

.auth-footer a {
  color: #4d79ff;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.auth-msg {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}
