.auth-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background: #f7f8fa;
  font-family: 'Poppins', sans-serif;
}

.auth-container {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

.auth-container h1 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.auth-container .muted {
  color: #777;
  margin-bottom: 1.5rem;
}

.auth-container label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
}

.auth-container input {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  transition: border-color 0.3s;
}

.auth-container input:focus {
  border-color: #007bff;
}

.btn-primary {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background-color: #007bff;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.auth-msg {
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}

.small {
  margin-top: 1rem;
  text-align: center;
}
