body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Background image via <img> */
.background-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* Login box */
.login-box {
  background: rgba(255, 255, 255, 0.96);
  padding: 50px 40px;
  max-width: 440px;
  width: 80%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
}

/* Headings and paragraph */
.login-box h2 {
  margin-top: 0px;
  font-size: 24px;
  color: #0072ce;
}

.login-box p {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

/* Input fields */
.login-box input[type="text"],
.login-box input[type="email"],
.login-box input[type="tel"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

/* Submit button */
.login-box button {
  width: 100%;
  background-color: #0072ce;
  color: white;
  padding: 12px;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-box button:hover {
  background-color: #005fa3;
}

/* Responsive */
@media (max-width: 500px) {
  .login-box {
    padding: 30px 20px;
  }

  .login-box h2 {
    font-size: 18px;
  }
}

.checkbox-wrapper {
  text-align: left;
  font-size: 13px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #333;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-top: 2px;
}

form label {
  display: block;
  text-align: left;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 14px;
  color: #333;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

.required {
  color: red;
  font-weight: bold;
}

.page-logo {
  position: fixed;
  top: 25px;
  left: 30px;
  height: 85px;
  width: auto;
  z-index: 10;
}