/* Philippine Government / MMDA color palette
   --gov-navy  : #003087  (deep navy)
   --gov-blue  : #0038A8  (Philippine flag blue)
   --gov-red   : #CE1126  (Philippine flag red)
   --gov-gold  : #FCD116  (Philippine flag gold)
   --gov-bg    : #EEF1F7  (clean light background)
*/

/* Main form container – clean government white card */
.aurora-subtle {
  position: relative;
  overflow: hidden;
  color: #1a2238;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #d1d9e6;
  box-shadow: 0 4px 24px rgba(0, 48, 135, 0.09);
}

/* Hide the old floating badge */
.mmda-glass-badge {
  display: none;
}

/* --- GOV HEADER BANNER --- */
.gov-header {
  width: 100%;
  background: #003087;
  border-bottom: 4px solid #FCD116;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
}

.gov-header img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.gov-header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gov-header-agency {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FCD116;
  line-height: 1;
  margin-bottom: 2px;
}

.gov-header-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.gov-header-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

.gov-header-right {
  margin-left: auto;
}

/* Page wrapper */
.gov-page-wrapper {
  min-height: 100vh;
  background: #EEF1F7;
  padding: 24px 16px 48px;
}

.gov-page-inner {
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .gov-header {
    padding: 10px 14px;
    gap: 10px;
  }
  .gov-header img {
    width: 44px;
    height: 44px;
  }
  .gov-header-title {
    font-size: 15px;
  }
  .gov-header-agency {
    font-size: 10px;
  }
}
