/* ===== Base Background & Font ===== */
body {
  background: white ;
  min-height: 100vh;
  font-family: 'Century Gothic';
  color: #333;
  margin: 0;
  padding: 0;
}

/* ===== Container Styling ===== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem;
}

.container.glass {
  background: rgba(255,255,255,0.78);
  border-radius: 22px;
  box-shadow: 0 6px 32px 0 rgba(31,38,135,0.12);
  padding: 36px 30px 32px 30px;
  margin: 40px auto 35px auto;
  max-width: 540px;
}

/* ===== Navbar ===== */
.navbar-custom {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(60,80,120,0.06);
  border-bottom: 1.5px solid #e3e3e3;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-custom img {
  height: 65px;
  width: auto;
  margin-left: 16px;
  filter: drop-shadow(0 2px 10px #b3e0c7cc);
  object-fit: contain;
}

.brand-text {
  font-family: 'Century Gothic';
  font-size: 1.2rem;
  color: #008037;
  margin-left: 8px;
  vertical-align: middle;
}

/* ===== Headings ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Century Gothic';
  color: #008037;
  margin-bottom: 1rem;
}

/* ===== Alerts ===== */
.alert {
  margin-top: 1rem;
  border-radius: 12px;
  font-size: 1rem;
  margin-bottom: 1.3rem;
  box-shadow: 0 2px 14px 0 rgba(239, 96, 96, 0.04);
}

/* ===== Buttons ===== */
.btn-primary {
  background-color: #008037;
  border-color: #007B35;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #006F2A;
  border-color: #005F23;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  color: #6b7684;
  font-size: 13px;
  margin-top: 16px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

/* ===== Links ===== */
a {
  color: #008037;
  text-decoration: none;
}
a:hover {
  color: #008037;
  text-decoration: underline;
}

/* ===== Utility Classes ===== */
.text-center {
  text-align: center;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mb-3 {
  margin-bottom: 1rem;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 600px) {
  .container.glass {
    padding: 12px 3vw;
    margin: 20px 1vw;
  }

  .navbar-custom img {
    height: 50px;
    width: auto;
    margin-left: 10px;
  }

  .brand-text {
    font-size: 1rem;
  }
}