body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: url('policy.png') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: url('policy.png') no-repeat center center fixed;
  background-size: contain; /* or 'cover' if you want it to fill the screen */
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.85); /* soft overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.login-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
  min-height: 520px;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}
.login-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
  min-height: 520px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  z-index: 1;
}

.login-form h2 {
  font-size: 1.5rem;
  color: #2a5298;
  margin-bottom: 10px;
  text-align: center;
}
.scrolling-heading {
  font-weight: 600;
  color: #2a5298;
  font-size: 1.3rem; /* Increased from 1rem */
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  text-align: center;
}
.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.login-form button {
  padding: 12px;
  background-color: #2a5298;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-form button:hover {
  background-color: #1e3c72;
}

#error-msg {
  color: red;
  font-size: 0.9rem;
  text-align: center;
}

