/* ===== BODY WITH HAL BACKGROUND IMAGE ===== */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;

  /* Background image + opacity */
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.85)
    ),
    url("https://upload.wikimedia.org/wikipedia/commons/e/ec/Tejas_MKII.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* ===== CENTER CONTAINER ===== */
.container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* ===== CARD ===== */
.card {
  background: white;
  padding: 40px;
  width: 380px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  text-align: center;
}

/* ===== TEXT ===== */
.card h3 {
  margin-bottom: 5px;
}

.card p {
  color: #6b7280;
  margin-bottom: 25px;
}

/* ===== FORM ===== */
.card label {
  display: block;
  text-align: left;
  margin-top: 15px;
  font-weight: bold;
  font-size: 14px;
}

.card input,
.card select {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

/* Focus */
.card input:focus,
.card select:focus {
  border-color: #3b82f6;
}

/* ===== BUTTON ===== */
.card button {
  width: 100%;
  padding: 14px;
  margin-top: 25px;
  background: #5b7dbd;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.card button:hover {
  background: #4a6cab;
}

/* ===== QR ===== */
#qrcode {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

/* ===== FOOTER ===== */
footer {
  margin-top: 50px;
  text-align: center;
  color: #6b7280;
  font-size: 13px;
}