/* ========================================================================
   offer.css — consolidated styles for Double Credits offer page
   ======================================================================== */

/* -------------------------
   Custom head styles (original @push custom-head)
   ------------------------- */
:root{
  --primary: #004CFF;
  --accent: #0056b3;
  --muted: #6c757d;
  --bg-hero-start: #f8f9fa;
  --bg-hero-end: #e9ecef;
}

/* Layout + utility */
.container-narrow{ max-width: 1100px; margin: 0 auto; }
.card-ghost{ border: 1px solid rgba(0,0,0,0.04); }

/* Countdown */
.countdown-timer{
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans";
  font-weight: 600;
  background-color: rgba(0,0,0,0.18);
  padding: 0.18rem 0.5rem;
  border-radius: 6px;
  margin-left: 0.5rem;
  color: #fff !important;
  display:inline-block;
}

/* Hero */
.hero-section{ background: linear-gradient(135deg,var(--bg-hero-start),var(--bg-hero-end)); position:relative; overflow:hidden; padding-top:3.5rem; padding-bottom:3.5rem; }
.hero-visual{ max-width:520px; margin:0 auto; }

/* Pricing */
.pricing-card{ transition: transform .28s ease, box-shadow .28s ease; border-radius:12px; border:1px solid rgba(4,9,20,0.04); }
.pricing-card.featured{ border:2px solid var(--primary); transform:translateY(-6px); box-shadow:0 20px 40px rgba(4,9,20,0.06); }
.popular-badge{ position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:linear-gradient(135deg,var(--primary),var(--accent)); color:#fff; padding:.35rem 1.25rem; border-radius:999px; font-size:.78rem; font-weight:700; box-shadow:0 6px 24px rgba(4,9,20,0.08); }

/* Features */
.feature-card{ transition: all .22s ease; border-left:4px solid transparent; border-radius:10px; }
.feature-card:hover{ border-left-color:var(--primary); transform:translateX(4px); box-shadow:0 8px 30px rgba(4,9,20,0.04); }

/* CTA */
.cta-section{ background: linear-gradient(135deg,var(--primary),var(--accent)); color:#fff; padding:3rem 0; }

/* Testimonials */
.testimonial-card{ border-left:4px solid var(--primary); border-radius:10px; }

/* Tables */
.table-comparison th{ background-color:#f8f9fa; font-weight:600; }
.table-comparison tr.table-success{ background-color: rgba(40,167,69,0.04); }

/* Responsive tweaks */
@media (max-width: 768px){
  .display-4{ font-size:2.4rem; }
  .hero-section{ padding-top:2rem; padding-bottom:2rem; }
  .popular-badge{ left:auto; right:1rem; transform:none; top:1rem; }
}

/* -------------------------
   Announcement bar styles
   (from inline announcement-bar <style>)
   ------------------------- */
.announcement-bar {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  font-size: 0.9rem;
}

.countdown-simple {
  font-family: 'Courier New', monospace;
  font-weight: 700;
}

.time-box {
  background: rgba(0, 0, 0, 0.25);
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  min-width: 40px;
  text-align: center;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.animate-pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@media (max-width: 576px) {
  .announcement-bar .d-flex {
    flex-direction: column;
    gap: 0.5rem !important;
  }
  
  .time-box {
    padding: 0.2rem 0.4rem;
    min-width: 35px;
    font-size: 0.85rem;
  }
}

/* -------------------------
   Site hero + card styles (head <style>)
   ------------------------- */
:root {
    --primary: #1a73e8;
    --primary-light: #e8f0fe;
    --success: #0d8b4e;
    --success-light: #e6f4ea;
    --dark: #202124;
    --gray-dark: #5f6368;
    --gray-medium: #9aa0a6;
    --gray-light: #f1f3f4;
    --border-radius: 12px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.03) 0%, rgba(255,255,255,0) 100%);
    transform: rotate(12deg);
    z-index: 0;
}

.container-narrow {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    background-color: var(--success-light);
    color: var(--success);
    font-weight: 600;
    border: 1px solid rgba(13, 139, 78, 0.1);
}

.hero-heading {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-subheading {
    font-size: 1.25rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background-color: var(--primary);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

.btn-primary-custom:hover {
    background-color: #0d66d0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 115, 232, 0.25);
}

.card-custom {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid var(--gray-light);
    padding: 1.75rem 2rem 0;
}

.card-body {
    padding: 1.75rem 2rem 2rem;
}

.card-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.savings-comparison {
    background-color: var(--gray-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.savings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.savings-label {
    color: var(--gray-dark);
    font-weight: 500;
}

.savings-value {
    font-weight: 600;
}

.standard-price {
    color: var(--gray-medium);
    text-decoration: line-through;
}

.double-credits {
    color: var(--success);
    font-size: 1.1rem;
}

.progress-container {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 10px;
    margin: 1.25rem 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--success) 0%, #2ecc71 100%);
    border-radius: 10px;
}

.value-indicator {
    text-align: center;
    color: var(--success);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stat-item {
    flex: 1;
}

.stat-value {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--gray-medium);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-badge {
    background-color: white;
    border-radius: 50px;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
}

.trust-text {
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Hero responsive */
@media (max-width: 992px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-subheading {
        font-size: 1.1rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .card-header, .card-body {
        padding: 1.5rem;
    }
}

/* -------------------------
   Comparison + pricing + CTA + features styles (consolidated)
   ------------------------- */

/* Layout spacing tokens used across the page */
.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.mb-6 {
  margin-bottom: 5rem;
}

.mt-6 {
  margin-top: 5rem;
}

/* Re-used feature-card styles (some duplicates included in page) */
.feature-card {
  transition: all 0.3s ease;
  border: 1px solid #f8f9fa;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
  border-color: #e9ecef;
}

.bg-primary-soft { background-color: rgba(13, 110, 253, 0.1); }
.bg-success-soft { background-color: rgba(25, 135, 84, 0.1); }
.bg-info-soft { background-color: rgba(13, 202, 240, 0.1); }
.bg-warning-soft { background-color: rgba(255, 193, 7, 0.1); }
.bg-danger-soft { background-color: rgba(220, 53, 69, 0.1); }
.bg-secondary-soft { background-color: rgba(108, 117, 125, 0.1); }

.bg-outline-secondary {
  background-color: transparent !important;
}

.fs-7 {
  font-size: 0.75rem;
}

.lh-base {
  line-height: 1.6;
}

/* Responsive adjustments (duplicate blocks from page) */
@media (max-width: 768px) {
  .py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .display-5 {
    font-size: 2.2rem;
  }
  
  .card-body.p-lg-5 {
    padding: 1.5rem !important;
  }
}

/* Another feature-card duplicate section (kept for parity) */
.feature-card {
  transition: all 0.3s ease;
  border: 1px solid #f8f9fa;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
  border-color: #e9ecef;
}

.feature-card:hover .position-absolute.bottom-0 {
  transform: scaleX(1);
}

/* Soft background colors (duplicate) */
.bg-primary-soft { background-color: rgba(13, 110, 253, 0.1); }
.bg-success-soft { background-color: rgba(25, 135, 84, 0.1); }
.bg-info-soft { background-color: rgba(13, 202, 240, 0.1); }
.bg-warning-soft { background-color: rgba(255, 193, 7, 0.1); }
.bg-danger-soft { background-color: rgba(220, 53, 69, 0.1); }
.bg-secondary-soft { background-color: rgba(108, 117, 125, 0.1); }

.mt-6 { margin-top: 4rem; }

/* -------------------------
   Pricing section styles (from pricing blocks)
   ------------------------- */

/* Subtle background for pricing section */
.bg-gradient-layer {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  z-index: -1;
  opacity: 0.9;
}

.label-offer {
  background: rgba(13,110,253,0.08);
  color: var(--bs-primary);
  border-radius: 6px;
  font-size: .85rem;
}

/* pricing card */
.pricing-card {
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  overflow: visible;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
  background: #fff;
}
.pricing-card:focus,
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(15,23,42,0.08); outline: none; }

.pricing-card .card-header { background: transparent; }

/* ribbon (popular) */
.ribbon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
.ribbon span {
  display:inline-block;
  background: var(--bs-primary);
  color: #fff;
  padding: .45rem .9rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight:700;
  letter-spacing: .4px;
  box-shadow: 0 6px 18px rgba(0,76,255,0.12);
}
.pricing-card.is-popular { border: 2px solid rgba(0,76,255,0.14); transform: scale(1.01); }

/* credit highlight */
.credit-highlight {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: rgba(25,135,84,0.06);
  border-bottom: 1px solid rgba(25,135,84,0.08);
}
.credit-highlight .total { font-size: 1rem; }

.effective-badge {
  background: rgba(33,37,41,0.9);
  color: #fff;
  font-weight:700;
  font-size: .85rem;
}

.features .icon-check {
  color: #16a34a; /* green */
  font-size: 1.05rem;
  line-height: 1;
}

.feature-item span { font-size: .95rem; }

.cta:focus { box-shadow: 0 0 0 4px rgba(13,110,253,0.12); }

/* responsive tweaks for pricing */
@media (max-width: 992px) {
  .pricing-card { min-height: auto; }
  .ribbon { top: -8px; transform: translateX(-50%) scale(.95); }
}

/* small utilities */
.display-6 { font-size: 1.6rem; }
.lead { font-size: 1.05rem; color: #6c757d; }

/* -------------------------
   FAQ / Accordion styles
   ------------------------- */
.py-6 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
@media (max-width: 768px) { .py-6 { padding-top: 2.5rem; padding-bottom: 2.5rem; } }

.accordion-item {
  border-radius: 12px !important;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.accordion-button {
  background: white;
  border: none;
  box-shadow: none !important;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: white;
  color: var(--bs-dark);
  border-bottom: 1px solid #f8f9fa;
}

.accordion-button::after {
  display: none;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .accordion-icon i {
  transform: rotate(45deg);
}

.accordion-body {
  border-top: 1px solid #f8f9fa;
  background: rgba(248, 249, 250, 0.5);
}

.bg-primary-soft {
  background-color: rgba(13, 110, 253, 0.1);
}

.lh-base {
  line-height: 1.6;
}

/* Responsive adjustments for accordion */
@media (max-width: 768px) {
  .py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .display-5 {
    font-size: 2.2rem;
  }
  
  .accordion-button {
    font-size: 1rem;
    padding: 1rem 1rem 1rem 1rem;
  }
  
  .accordion-button .text-primary {
    margin-right: 0.75rem;
  }
}

/* -------------------------
   CTA Section styles (repeated/refined)
   ------------------------- */

/* Design tokens (already present earlier) - kept for file completeness */
:root {
  --max-width: 980px;
  --space-xxl: 48px;
  --space-xl: 32px;
  --space-lg: 20px;
  --space-md: 16px;
  --space-sm: 10px;

  --radius-lg: 14px;
  --radius-md: 10px;

  --color-bg: #f7f9fb;
  --color-card: #ffffff;
  --color-primary: #004CFF; /* your brand primary */
  --color-primary-600: #0b5dff;
  --color-accent: #10b981;
  --color-text: #0f1724;
  --color-muted: #6b7280;
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 18px 46px rgba(15, 23, 42, 0.08);
}

/* Section */
.cta-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, #ffffff 100%);
  padding: var(--space-xxl) 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--color-text);
}

/* Card */
.cta-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
  margin: 0 auto;
}
.cta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* Header */
.cta-card-header {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-600) 100%);
  color: white;
  padding: calc(var(--space-lg) * 1.5) var(--space-xl);
  text-align: center;
}
.offer-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .9rem;
  letter-spacing: .6px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.cta-title {
  margin: 6px 0 6px;
  font-size: 1.6rem;
  line-height: 1.15;
  font-weight: 700;
}
.cta-sub {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
}

/* Body */
.cta-card-body {
  padding: var(--space-xl);
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.benefit {
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(15,23,42,0.02);
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.benefit-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 6px;
  color: var(--color-text);
}
.benefit-desc {
  margin: 0;
  color: var(--color-muted);
  font-size: .95rem;
  line-height: 1.35;
}

/* CTA + urgency */
.cta-actions {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}
.cta-btn {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-block;
  transition: transform .16s ease, box-shadow .16s ease;
  box-shadow: 0 8px 20px rgba(4, 82, 255, 0.12);
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(4,82,255,0.12); }
.cta-btn:focus { outline: 3px solid rgba(0,76,255,0.16); outline-offset: 2px; border-radius: 10px; }

.urgency {
  text-align: center;
  min-width: 220px;
}
.urgency .spots {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}
.urgency .spots-note {
  color: var(--color-muted);
  font-size: .88rem;
}

/* Trust row */
.cta-trust {
  padding: calc(var(--space-md)) var(--space-xl) calc(var(--space-lg));
  text-align: center;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  color: var(--color-muted);
  font-size: .95rem;
}
.trust-item {
  background: rgba(15,23,42,0.02);
  padding: 8px 12px;
  border-radius: 8px;
}

/* Responsive for CTA */
@media (max-width: 880px) {
  .cta-card-header { padding: calc(var(--space-md) * 1.5) var(--space-md); }
  .cta-card-body { padding: var(--space-lg); }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .cta-title { font-size: 1.4rem; }
}

@media (max-width: 600px) {
  .cta-section { padding: 34px 0; }
  .cta-card-body { padding: 20px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .cta-actions { flex-direction: column; gap: 10px; }
  .cta-btn { width: 100%; text-align: center; padding: 12px 18px; font-size: 1rem; }
  .urgency { width: 100%; }
  .trust-list { gap: 10px; }
}

/* -------------------------
   Comparison cards (duplicated earlier) – keep for parity
   ------------------------- */
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.comparison-card {
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 6px 18px rgba(15,23,42,0.04);
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 260px;
}
.comparison-card:focus,
.comparison-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(15,23,42,0.08); outline: none; }

.brand-bubble {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
}

.nb-card { background: rgba(220,53,69,0.06); }
.nb-bubble { background: #dc3545; color: #fff; }
.text-nb, .nb-card .price { color: #c82333; }

.zb-card { background: rgba(13,110,253,0.06); }
.zb-bubble { background: #0d6efd; color: #fff; }
.text-zb, .zb-card .price { color: #0a58ca; }

.zuhal-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fff9 100%);
  border: 2px solid rgba(16,185,129,0.12);
  padding-top: 18px;
}
/* Note: original had a malformed selector ".zu hal-bubble" — kept intact as comment */
.zuhal-bubble { background: #10b981; color:#fff; width:64px; height:64px; }
.best-value {
  background: #10b981;
  color: #fff;
  font-weight:700;
  padding: .35rem .6rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(16,185,129,0.12);
  font-size: .75rem;
}

.price { font-weight:700; }
.price-block small { color: #6b7280; }
.per-email-rate { letter-spacing: 0.15px; }

.callout {
  background: linear-gradient(90deg, rgba(16,185,129,0.06), rgba(99,102,241,0.02));
  border: 1px solid rgba(16,185,129,0.06);
}

@media (max-width: 767px) {
  .brand-bubble { width: 56px; height: 56px; font-size: 0.95rem; }
  .py-5 { padding-top: 2rem; padding-bottom: 2rem; }
  .comparison-card { min-height: auto; }
}

/* -----------------------------------------------------------------------------
   End of consolidated CSS for offer page
   ----------------------------------------------------------------------------- */

/* Email Submission Modal Styles */
#emailSubmitModal .modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

#emailSubmitModal .modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
}

#emailSubmitModal .modal-body {
    padding: 1.5rem;
}

#emailSubmitModal .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
}

#emailSubmitModal .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

#emailSubmitModal .alert-info {
    background-color: #f8f9fa;
    border-color: #e9ecef;
    color: #495057;
}

/* Success Modal Styles */
#successModal .modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

#successModal .modal-body {
    padding: 2rem;
}

/* Validation Styles */
.was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6.4.4.4-.4'/%3e%3cpath d='M6 7v2'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid {
    border-color: #198754;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
