.auth-form {
  max-width: 400px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-form input {
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.auth-form button {
  padding: 0.75rem;
  background: #2a7de1;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.auth-form button:hover {
  background: #155fb8;
}

.form-error {
  color: #d9363e;
  font-weight: bold;
  text-align: center;
}

.form-success {
  color: #2a7de1;
  font-weight: bold;
  text-align: center;
}