/* auth.css */

body {
  background-color: #181818;
  font-family: 'Segoe UI', sans-serif;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.auth-container {
  background-color: #2a2a2a;
  padding: 2rem;
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.auth-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.auth-container form {
  display: flex;
  flex-direction: column;
}

.auth-container input {
  background-color: #1f1f1f;
  border: 1px solid #444;
  color: #f0f0f0;
  padding: 10px;
  margin-bottom: 1rem;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.auth-container input:focus {
  outline: none;
  border-color: #4a90e2;
}

.auth-container button {
  background-color: #4a90e2;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.auth-container button:hover {
  background-color: #357ab8;
}

.auth-container p {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.auth-container a {
  color: #4a90e2;
  text-decoration: none;
}

.auth-container a:hover {
  text-decoration: underline;
}

.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  text-align: center;
}
