* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

/* ================= BODY ================= */
body {
  min-height: 100vh;
  background: linear-gradient(
      rgba(0, 56, 168, 0.75),
      rgba(0, 56, 168, 0.75)
  ),
  url("../image/mnhs.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  color: #fff;
}

/* ================= HEADER ================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: rgba(255,255,255,0.95);
  color: #002b5c;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-left img {
  width: 60px;
  height: 60px;
}

.header-left h1 {
  font-size: 20px;
  font-weight: 700;
}

.header-left p {
  font-size: 13px;
  color: #555;
}

/* ================= MAIN ================= */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* ================= GLASS CARD ================= */
.glass-card {
  max-width: 560px;
  padding: 45px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  text-align: center;
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glass-card h2 {
  font-size: 34px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #ffffff;
}

.glass-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #f1f1f1;
}

/* ================= BLACK BOLD TEXT FOR RAPID HEEADSS ================= */
.glass-card p strong {
  color: #000000;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ================= LOGIN DROPDOWN IN CARD ================= */
.card-login {
  margin-top: 30px;
  position: relative;
  display: inline-block;
}

/* LOGIN BUTTON */
.login-btn {
  background: #ffffff;
  color: #0038a8;
  border: none;
  padding: 14px 42px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.login-btn:hover {
  background: #e6ecff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* DROPDOWN MENU */
.login-menu {
  display: none;
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 12px;
  width: 200px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  overflow: hidden;
  z-index: 10;
}

.login-menu.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.login-menu a {
  display: block;
  padding: 14px;
  text-align: center;
  color: #0038a8;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}

.login-menu a:last-child {
  border-bottom: none;
}

.login-menu a:hover {
  background: #0038a8;
  color: #ffffff;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 12px;
  font-size: 13px;
  background: rgba(0,0,0,0.35);
  color: #eee;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  header {
    padding: 15px 25px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .header-left {
    flex-direction: column;
  }

  .header-left h1 {
    font-size: 18px;
  }

  .glass-card {
    padding: 35px 25px;
  }

  .glass-card h2 {
    font-size: 28px;
  }

  .glass-card p {
    font-size: 14px;
  }

  .login-btn {
    padding: 12px 35px;
    font-size: 15px;
  }
}