/* ============================================================
   GST Invoice System — FinTech Redesign v2
   Animated Gradient · Session Timer · Animate.css Enhanced
   ============================================================ */

:root {
  --brand-red: #D32F2F;
  --brand-red-dark: #B71C1C;
  --brand-red-light: #EF5350;
  --charcoal: #1A1C20;
  --charcoal-light: #2D2F36;
  --off-white: #F4F5F7;
  --card-bg: #FFFFFF;
  --input-bg: #F8F9FB;
  --input-border: #E2E5EA;
  --input-focus: #D32F2F;
  --text-primary: #1A1C20;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --green-trust: #22C55E;
  --shadow-card: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-btn: 0 4px 16px rgba(211,47,47,0.3);
  --shadow-btn-hover: 0 8px 28px rgba(211,47,47,0.4);
  --radius-card: 24px;
  --radius-input: 12px;
  --radius-btn: 12px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body.gst-body {
  margin: 0; padding: 0;
  font-family: var(--font);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
}

/* ===== Animated Gradient Background ===== */
.gst-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(318deg, #e7d2d2, #ffebeb, #dac7c7, #ff0000);
  background-size: 400% 400%;
  animation: gst-bg-shift 20s ease infinite;
}

@keyframes gst-bg-shift {
  0%   { background-position: 0% 50%; }
  25%  { background-position: 100% 50%; }
  50%  { background-position: 100% 0%; }
  75%  { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}

/* ===== Main Card ===== */
.gst-card {
  width: 100%;
  max-width: 1040px;
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  display: flex;
  overflow: hidden;
  min-height: 580px;
  position: relative;
}

/* ===== Left Brand Panel with animated gradient ===== */
.gst-brand {
  flex: 0 0 44%;
  background: linear-gradient(318deg, var(--brand-red), var(--brand-red-dark), #bc6464, #ca0a0a);
  background-size: 300% 300%;
  animation: gst-brand-gradient 12s ease infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

@keyframes gst-brand-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Move this to your external .css file */
.d-none {
  display: none !important;
}

#otpTimer {
  font-weight: bold;
  color: #dc3545; /* Bootstrap danger color */
  margin-right: 0.5rem;
  padding-left: 2%;
}

.gst-brand::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -80px; right: -100px;
  animation: gst-float 8s ease-in-out infinite;
}
.gst-brand::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  bottom: -40px; left: -60px;
  animation: gst-float 10s ease-in-out infinite reverse;
}

@keyframes gst-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.05); }
}

.gst-brand-logo {
  width: 136px; height: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
  margin-bottom: 1.75rem;
  position: relative; z-index: 1;
}

/* ===== Looping Title Animation ===== */
.gst-brand-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
  letter-spacing: -0.3px;
  position: relative; z-index: 1;
  animation: gst-title-glow 4s ease-in-out infinite;
}

@keyframes gst-title-glow {
  0%, 100% {
    text-shadow: 0 0 8px rgba(255,255,255,0.1);
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 24px rgba(255,255,255,0.4), 0 0 48px rgba(239,83,80,0.2);
    opacity: 0.95;
  }
}

.gst-brand-divider {
  width: 40px; height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  margin: 1.25rem 0;
  position: relative; z-index: 1;
  animation: gst-divider-pulse 3s ease-in-out infinite;
}

@keyframes gst-divider-pulse {
  0%, 100% { width: 40px; opacity: 0.3; }
  50%      { width: 60px; opacity: 0.6; }
}

.gst-brand-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.5;
  max-width: 240px;
  position: relative; z-index: 1;
}

/* ===== Session Timer & Logout ===== */
.gst-session-bar {
  position: absolute;
  top: 16px; right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.gst-timer {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 0.3rem 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.gst-timer i { font-size: 0.8rem; }

.gst-timer.gst-timer-warn {
  color: #FFA726;
  border-color: rgba(255,167,38,0.3);
  background: rgba(255,167,38,0.1);
}

.gst-timer.gst-timer-danger {
  color: #EF5350;
  border-color: rgba(239,83,80,0.3);
  background: rgba(239,83,80,0.1);
  animation: gst-timer-blink 1s ease-in-out infinite;
}

@keyframes gst-timer-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

.gst-logout-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 0.3rem 0.7rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.gst-logout-btn:hover {
  background: rgba(239,83,80,0.2);
  border-color: rgba(239,83,80,0.4);
  color: #fff;
}

.gst-logout-btn i { font-size: 0.8rem; }

/* Session bar on form panel (for date selection page) */
.gst-session-bar-light {
  position: fixed;              /* Keeps it visible while scrolling */
  bottom: 16px;                 /* Sticks it to the bottom */
  right: 16px;
  top:auto;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;                /* High z-index ensures it stays on top of all elements */
}


.gst-session-bar-light .gst-timer {
  background: rgba(0,0,0,0.04);
  border-color: var(--input-border);
  color: var(--text-secondary);
}

.gst-session-bar-light .gst-logout-btn {
  background: rgba(0,0,0,0.04);
  border-color: var(--input-border);
  color: var(--text-secondary);
}
.gst-session-bar-light .gst-logout-btn:hover {
  background: rgba(211,47,47,0.08);
  color: var(--brand-red);
}

/* ===== Right Form Panel ===== */
.gst-form-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background: var(--card-bg);
  position: relative;
}

.gst-form { width: 100%; max-width: 380px; }

.gst-form-title {
  font-size: 1.5rem; font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.35rem 0;
  letter-spacing: -0.3px;
}

.gst-form-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0 0 2rem 0;
  line-height: 1.5;
}

/* ===== Inputs ===== */
.gst-field { margin-bottom: 1.35rem; }

.gst-field-label {
  display: block;
  font-size: 0.72rem; font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.45rem;
}

.gst-input-wrap { position: relative; display: flex; align-items: center; }

.gst-input-icon {
  position: absolute; left: 14px;
  color: var(--text-muted);
  font-size: 1.05rem;
  pointer-events: none;
  transition: color 0.2s;
  z-index: 2;
}

.gst-input {
  width: 100%;
  padding: 0.75rem 0.9rem 0.75rem 2.75rem;
  font-size: 0.9rem; font-family: var(--font);
  color: var(--text-primary);
  background: var(--input-bg);
  border: 2px solid var(--input-border);
  border-radius: var(--radius-input);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.gst-input::placeholder { color: var(--text-muted); font-size: 0.84rem; }
.gst-input:focus {
  border-color: var(--input-focus);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(211,47,47,0.06);
}
.gst-input:focus ~ .gst-input-icon,
.gst-input-wrap:focus-within .gst-input-icon { color: var(--brand-red); }

/* ===== CAPTCHA ===== */
.gst-captcha {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1.35rem; justify-content: center;
}
.gst-captcha img {
  height: 44px; border-radius: 10px;
  border: 2px solid var(--input-border);
  background: var(--input-bg);
}
.gst-captcha-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--input-border);
  background: var(--card-bg);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s;
  color: var(--text-muted); font-size: 1rem; flex-shrink: 0;
}
.gst-captcha-btn:hover {
  border-color: var(--brand-red); color: var(--brand-red);
  background: rgba(211,47,47,0.04); transform: rotate(90deg);
}

/* ===== CTA Button ===== */
.gst-btn {
  width: 100%; padding: 0.8rem 1rem;
  font-size: 0.92rem; font-weight: 600; font-family: var(--font);
  color: #fff;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border: none; border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-btn);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  letter-spacing: 0.2px; position: relative; overflow: hidden; margin-top: 0.5rem;
}
.gst-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.gst-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-btn-hover); }
.gst-btn:hover::after { opacity: 1; }
.gst-btn:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(211,47,47,0.25); }
.gst-btn i { font-size: 1.1rem; position: relative; z-index: 1; }
.gst-btn span { position: relative; z-index: 1; }

/* ===== Trust Badge ===== */
.gst-trust {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 1.75rem; padding: 0.55rem 1rem;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: 50px;
}
.gst-trust-icon { color: var(--green-trust); font-size: 0.9rem; }
.gst-trust-text { font-size: 0.72rem; font-weight: 500; color: var(--text-secondary); letter-spacing: 0.2px; }

/* ===== OTP Modal ===== */
.gst-modal .modal-content {
  border-radius: 20px; border: none;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18); padding: 0.5rem;
}
.gst-modal .modal-header { border: none; padding: 1.5rem 1.5rem 0; }
.gst-modal .modal-title { font-weight: 700; font-size: 1.15rem; color: var(--text-primary); }
.gst-modal .modal-body { padding: 1rem 1.5rem 1.75rem; }
.gst-modal .otp-desc { color: var(--text-secondary); font-size: 0.82rem; margin-bottom: 1.5rem; line-height: 1.5; }

.gst-otp-grid { display: flex; justify-content: center; gap: 10px; margin-bottom: 1.5rem; }
.gst-otp-grid .otp-input {
  width: 48px; height: 54px; font-size: 1.35rem; font-weight: 600;
  font-family: var(--font); text-align: center;
  border: 2px solid var(--input-border); border-radius: 12px;
  background: var(--input-bg); color: var(--text-primary);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  -moz-appearance: textfield; -webkit-text-security: disc;
}
.gst-otp-grid .otp-input::-webkit-outer-spin-button,
.gst-otp-grid .otp-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.gst-otp-grid .otp-input:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(211,47,47,0.08); background: #fff;
}
.gst-modal .gst-btn { max-width: 220px; margin: 0 auto; }
.gst-modal-sm { max-width: 400px; }

/* ===== Account Badge ===== */
.gst-acct-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(211,47,47,0.05);
  border: 1.5px solid rgba(211,47,47,0.15);
  color: var(--brand-red); font-weight: 600; font-size: 0.88rem;
  padding: 0.5rem 1.25rem; border-radius: 50px; letter-spacing: 0.3px;
}
.gst-acct-badge i { font-size: 1rem; }
.gst-badge-wrap { margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 8px; }

/* GST Specific Badge */
.gst-gst-badge {
  background: rgba(34,197,94,0.05);
  border: 1.5px solid rgba(34,197,94,0.15);
  color: #16a34a;
}

/* Date Selection Info Box */
.gst-period-info {
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 0.75rem;
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
}
.gst-period-info i {
  color: var(--brand-red);
  font-size: 0.9rem;
}

/* ===== Corner Logo (top-right of page, outside card) ===== */
.gst-corner-logo {
  position: absolute;
  top: 0;
  right: 0;
  height: 100px;
  width: auto;
  opacity: 0.85;
  z-index: 5;
}

/* ===== Error Page ===== */
.gst-error-card { min-height: 520px; }
.gst-error-content { text-align: center; }
.gst-error-emoji {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.gst-error-code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(211,47,47,0.06);
  color: var(--brand-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.gst-error-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
}
.gst-error-msg {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 0 0.25rem 0;
  line-height: 1.5;
}
.gst-error-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem 0;
}
.gst-error-btn {
  display: inline-flex;
  width: auto;
  padding: 0.7rem 2rem;
  text-decoration: none;
}

/* ===== Skeleton Page Loader ===== */
.gst-skeleton-loader {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--card-bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.4s ease;
}
.gst-skeleton-loader.gst-skeleton-done {
  opacity: 0; pointer-events: none;
}
.gst-skeleton-inner {
  width: 100%; max-width: 1040px;
  display: flex; gap: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 500px;
  margin: 24px;
}
.gst-skeleton-brand {
  flex: 0 0 44%;
  background: linear-gradient(160deg, #e0e0e0 0%, #c0c0c0 100%);
  animation: gst-skeleton-pulse 1.5s ease-in-out infinite;
}
.gst-skeleton-form {
  flex: 1; padding: 3rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  justify-content: center;
}
.gst-skeleton-line {
  height: 14px;
  background: #e8e8e8;
  border-radius: 8px;
  animation: gst-skeleton-pulse 1.5s ease-in-out infinite;
}
.gst-skeleton-line.sk-title { width: 60%; height: 22px; margin-bottom: 4px; }
.gst-skeleton-line.sk-desc  { width: 85%; height: 12px; margin-bottom: 16px; }
.gst-skeleton-line.sk-label { width: 30%; height: 10px; }
.gst-skeleton-line.sk-input { width: 100%; height: 42px; border-radius: 12px; }
.gst-skeleton-line.sk-captcha { width: 50%; height: 44px; border-radius: 10px; margin: 0 auto; }
.gst-skeleton-line.sk-btn   { width: 100%; height: 44px; border-radius: 12px; background: #ddd; }

@keyframes gst-skeleton-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

/* ===== Loader ===== */
#mainloader {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(26,28,32,0.5);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 14px; display: none;
}
#mainloader.gst-loader-visible { display: flex; }
#mainloader.gst-loader-hidden { display: none; }
#mainloader .main-loader { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.gst-loader-icon { font-size: 2.2rem; color: #fff; animation: gst-spin 0.8s linear infinite; }
.gst-loader-text { color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500; }

/* ===== Flatpickr Overrides ===== */
.flatpickr-calendar {
  font-family: var(--font) !important;
  border-radius: 14px !important;
  border: 1px solid var(--input-border) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12) !important;
}
.flatpickr-day.selected, .flatpickr-day.selected:hover {
  background: var(--brand-red) !important;
  border-color: var(--brand-red) !important; color: #fff !important;
}
.flatpickr-day.today:not(.selected) { border-color: var(--brand-red) !important; }
.flatpickr-day:hover:not(.selected):not(.today) {
  background: rgba(211,47,47,0.06) !important;
  border-color: rgba(211,47,47,0.06) !important;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg { fill: var(--brand-red) !important; }
.gst-datepicker { cursor: pointer; }

/* ===== Disabled Button ===== */
.gst-btn-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

/* ===== Page Transition Loader ===== */
.gst-page-loader {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--card-bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
.gst-page-loader.gst-page-loaded {
  opacity: 0;
  pointer-events: none;
}
.gst-page-loader-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--input-border);
  border-top-color: var(--brand-red);
  border-radius: 50%;
  animation: gst-spin 0.7s linear infinite;
}

/* ===== Animate.css Enhancement Delays ===== */
.gst-anim-delay-1 { animation-delay: 0.1s; }
.gst-anim-delay-2 { animation-delay: 0.2s; }
.gst-anim-delay-3 { animation-delay: 0.3s; }
.gst-anim-delay-4 { animation-delay: 0.4s; }
.gst-anim-delay-5 { animation-delay: 0.5s; }
.gst-anim-delay-6 { animation-delay: 0.6s; }

/* ===== Error Page ===== */
.gst-error-content { text-align: center; }
.gst-error-emoji { font-size: 4rem; margin-bottom: 1rem; }
.gst-error-content .gst-form-title { text-align: center; font-size: 1.3rem; }
.gst-error-content .gst-form-desc { text-align: center; font-size: 0.88rem; line-height: 1.7; }
.gst-error-code {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.gst-error-separator { color: var(--input-border); }
.gst-error-content .gst-btn { max-width: 260px; margin: 0 auto; text-decoration: none; }
.gst-error-content .gst-trust { margin-top: 1.5rem; }

@keyframes gst-spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .gst-page { padding: 16px; }
  .gst-card { max-width: 800px; min-height: 520px; }
  .gst-brand { flex: 0 0 40%; padding: 2.5rem 1.75rem; }
  .gst-brand-logo { width: 124px; margin-bottom: 1.25rem; }
  .gst-brand-title { font-size: 1.25rem; }
  .gst-brand-subtitle { font-size: 0.78rem; }
  .gst-form-panel { padding: 2.5rem 2rem; }
  .gst-form { max-width: 340px; }
  .gst-form-title { font-size: 1.3rem; }
}

@media (max-width: 767px) {
  body.gst-body { align-items: flex-start; }
  .gst-page { padding: 0; align-items: flex-start; }
  .gst-card { flex-direction: column; border-radius: 0; box-shadow: none; min-height: 100vh; max-width: 100%; }
  .gst-brand {
    flex: none; padding: 1.5rem 1.25rem;
    flex-direction: row; gap: 14px;
    justify-content: center; align-items: center; min-height: auto;
  }
  .gst-brand::before { width: 160px; height: 160px; top: -60px; right: -40px; }
  .gst-brand::after { display: none; }
  .gst-brand-logo { width: 120px; margin-bottom: 0; }
  .gst-brand-title { font-size: 1.05rem; text-align: left; }
  .gst-brand-divider, .gst-brand-subtitle { display: none; }
  .gst-session-bar { top: 8px; right: 8px; }
  .gst-corner-logo { display: none; }
  .gst-form-panel { padding: 2rem 1.5rem 3rem; align-items: flex-start; }
  .gst-form { max-width: 100%; }
  .gst-form-title { font-size: 1.3rem; }
  .gst-form-desc { margin-bottom: 1.5rem; }
  .gst-field { margin-bottom: 1.25rem; }
  .gst-otp-grid .otp-input { width: 42px; height: 48px; font-size: 1.15rem; }
  .gst-trust { margin-top: 1.5rem; }
}

@media (max-width: 400px) {
  .gst-brand { padding: 1.25rem 1rem; gap: 10px; }
  .gst-brand-logo { width: 120px; }
  .gst-brand-title { font-size: 0.95rem; }
  .gst-form-panel { padding: 1.5rem 1.25rem 2.5rem; }
  .gst-form-title { font-size: 1.15rem; }
  .gst-input { padding: 0.65rem 0.8rem 0.65rem 2.5rem; font-size: 0.85rem; }
  .gst-otp-grid { gap: 6px; }
  .gst-otp-grid .otp-input { width: 36px; height: 42px; font-size: 1rem; border-radius: 10px; }
}

.fnote
{
  text-align: left !important; background: rgba(0,0,0,0.03) !important; padding: 10px !important; border-radius: 8px !important;
}
.fnotetext
{
  font-size: 0.85rem; line-height: 1.4;
}