html, body {
  height: 100%;
  margin: 0;
}
body {
  background: url('/static/order_background.webp') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', 'Inter', 'SF Pro Text', 'Segoe UI', system-ui, -apple-system, sans-serif;
}
.login-container {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.2);
}
.login-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}
