* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
}

/* Background image */
.background {
  position: fixed;
  inset: 0;
  background: url("/static/AXwebback.jpg") center / cover no-repeat;
  filter: brightness(0.7);
  z-index: -1;
}

/* Login card */
.login-container {
  width: 380px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  text-align: center;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo {
  width: 220px;
  margin-bottom: 16px;
}

h2 {
  margin-bottom: 24px;
  font-weight: 500;
  color: #222;
}

input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

input:focus {
  outline: none;
  border-color: #000;
}

button {
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
}

button:hover {
  background: #222;
}

.error {
  color: #c00;
  margin-top: 12px;
  font-size: 14px;
}
