
*{
  margin: 0;
  font-family: 'Nunito', sans-serif;
}
/* ===============================
   Full page background
================================ */
.landing-container {
  min-height: 100vh;
  width: 100%;
  background: url("oil-palm-background.webp") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   Glass card
================================ */
.landing-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px 36px 24px;
  width: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  text-align: center;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}

/* ===============================
   Landing options
================================ */
.landing-option {
  flex: 0 0 48%;
  max-width: 42%;
  height: 180px;

  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* Text inside option */
.landing-option p {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 800;
  color: #1B5E20;
  letter-spacing: 0.3px;
}

/* ===============================
   Logo
================================ */
.landing-logo {
  max-width: 50%;
  height: auto;
}

.landing-logo-2 {
  max-width: 90%;
  height: auto;
}


/* ===============================
   Active button
================================ */
.active-option {
  background-color: #ffffff;
  cursor: pointer;
}

.active-option:hover {
  transform: translateY(-4px);
  background-color: #8DAF90 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.active-option:hover p {
  color: #ffffff;
}

/* ===============================
   Disabled button
================================ */
/* .disabled-option {
  background-color: rgba(46, 125, 50, 0.35);
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(100%);
  opacity: 0.6;
}

.disabled-option p {
  color: rgba(255, 255, 255, 0.7);
}

.landing-logo.disabled {
  filter: grayscale(100%);
  opacity: 0.7;
} */

/* ===============================
   Footer
================================ */
.landing-footer {
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.9;
  text-align: center;
}
