.loginPage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(10,127,70,.14), transparent 28%),
    linear-gradient(135deg, #eef8f2, #f7faf8);
}

.loginBox {
  width: 100%;
  max-width: 440px;
  background: white;
  border-radius: 26px;
  padding: 28px 24px;
  border: 1px solid #dce7e1;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .14);
  position: relative;
  overflow: hidden;
}

.loginBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 7px;
  width: 100%;
  background: #0a7f46;
}

.loginLogo {
  text-align: center;
  margin-bottom: 22px;
}

.loginLogo img {
  width: 110px;
  height: 64px;
  object-fit: contain;
}

.loginTitle {
  font-size: 27px;
  font-weight: 900;
  color: #0a7f46;
  margin-top: 6px;
}

.loginSub {
  font-size: 13px;
  color: #6b7280;
  font-weight: 800;
  margin-top: 4px;
}

.loginInfo {
  background: #eef8f2;
  border: 1px solid #cde8d8;
  color: #0a7f46;
  border-radius: 14px;
  padding: 11px 13px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
}

.loginBtn {
  margin-top: 5px;
  width: 100%;
}

.loginFooter {
  margin-top: 18px;
  text-align: center;
  font-size: 12px;
  color: #0a7f46;
  font-weight: 900;
}