/* Authentication Pages */
.auth-container {
  max-width: 400px;
  margin: 100px auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.auth-container h1 {
  text-align: center;
  font-size: 3em;
  margin-bottom: 10px;
}

.auth-container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.auth-container input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.auth-container button {
  width: 100%;
  padding: 12px;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.auth-container button:hover {
  background: #5568d3;
}

.auth-container p {
  text-align: center;
  margin-top: 20px;
  color: #666;
}

.auth-container a {
  color: #667eea;
  text-decoration: none;
  font-weight: bold;
}

.error {
  background: #fee;
  color: #c33;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
}

/* Error Messages */
.auth-error {
  background: #fee;
  color: #e53e3e;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Social Auth (if needed later) */
.social-auth {
  margin-top: 20px;
}

.social-auth-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.social-auth-divider::before,
.social-auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: #ddd;
}

.social-auth-divider::before { left: 0; }
.social-auth-divider::after { right: 0; }

.social-auth-divider span {
  background: white;
  padding: 0 10px;
  color: #666;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 480px) {
  .auth-container {
    margin: 40px auto;
    padding: 30px 20px;
  }
  
  .auth-container h1 {
    font-size: 2em;
  }
}