/* =====================================================
   T.I.M.E. Trivandrum — Bank & SSC Landing Page
   Plain CSS — safe to hand-edit directly in cPanel
   ===================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #1f2430;
  background: #ffffff;
  line-height: 1.65;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #003b66;
  font-weight: 700;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 52px 0;
  }
}
svg {
  display: block;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
/* Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 24px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.btn:focus-visible {
  outline: 2.5px solid #ffcb08;
  outline-offset: 2px;
}

.btn-primary {
  background: #003b66;
  color: #fff;
}
.btn-primary:hover {
  background: #004d80;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 59, 102, 0.25);
}

.btn-gold {
  background: #ffcb08;
  color: #003b66;
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 203, 8, 0.35);
}

.btn-outline {
  border-color: #e5e1d6;
  color: #003b66;
  background: #fff;
}
.btn-outline:hover {
  border-color: #003b66;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-outline-light:hover {
  border-color: #ffcb08;
  color: #ffcb08;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

a:focus-visible, summary:focus-visible {
  outline: 2.5px solid #ffcb08;
  outline-offset: 2px;
}

/* Common Section Heads */
.sec-head {
  max-width: 640px;
  margin-bottom: 40px;
}
.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sec-kicker {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(186.5, 147.2368421053, 0);
  display: block;
  margin-bottom: 8px;
}

.sec-head h2 {
  font-size: clamp(24px, 3vw, 32px);
}

.sec-head p {
  margin-top: 10px;
  color: #5b5f6b;
  font-size: 15px;
}

/* =====================================================
   COMPONENT STYLES
   ===================================================== */
/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e1d6;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logoWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logoImg {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.brandText {
  line-height: 1.2;
}

.brandTitle {
  font-weight: 700;
  font-size: 16px;
  color: #003b66;
}

.brandSubtitle {
  font-size: 11.5px;
  color: #5b5f6b;
}

.navLinks {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
  color: #5b5f6b;
}
.navLinks a {
  transition: color 0.15s ease;
}
.navLinks a:hover {
  color: #003b66;
}

@media (max-width: 900px) {
  .navLinks {
    display: none;
  }
}
/* Trust badge strip under navbar */
.badgeStrip {
  background: #003b66;
  color: #dce3f0;
  font-size: 12.5px;
}

.badgeWrapDesktop {
  display: flex;
  justify-content: center;
  gap: 26px;
  padding: 8px 24px;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 0 auto;
}

.badgeWrapMobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px;
  max-width: 500px;
  margin: 0 auto;
}

.sliderWindow {
  flex: 1;
  overflow: hidden;
}

.sliderTrack {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sliderSlide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 4px;
}

.slideBtn {
  background: none;
  border: none;
  color: #dce3f0;
  cursor: pointer;
  padding: 4px 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
}
.slideBtn:hover {
  color: #fff;
}

.badgeItem {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.badgeIcon {
  color: #ffcb08;
  font-size: 14px;
}

@media (max-width: 768px) {
  .badgeWrapDesktop {
    display: none;
  }
  .badgeWrapMobile {
    display: flex;
  }
}

/* ===== Hero ===== */
.hero {
  background: #f7f5ef;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 920px) {
  .heroGrid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #003b66;
  background: #fff9e6;
  border: 1px solid rgb(255, 229.8421052632, 135.5);
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.heroTitle {
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.16;
  margin-bottom: 16px;
  color: #003b66;
}
.heroTitle .accent {
  color: rgb(212, 167.3684210526, 0);
  background: linear-gradient(120deg, rgba(255, 203, 8, 0.2) 0%, rgba(255, 203, 8, 0) 100%);
  padding: 0 4px;
  border-radius: 4px;
}

.lead {
  font-size: 16.5px;
  color: #5b5f6b;
  max-width: 50ch;
  margin-bottom: 22px;
}

.heroChecks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 28px;
}
.heroChecks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1f2430;
}

.heroActions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.seatsBadge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  color: #c1272d;
  background: #fbeaea;
  border: 1px solid #f0c7c7;
  padding: 7px 12px;
  border-radius: 20px;
  margin-top: 18px;
}

.dotp {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c1272d;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
/* Form Card */
.formCard {
  background: #fff;
  border: 1px solid #e5e1d6;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 59, 102, 0.08);
  padding: 28px;
}
.formCard h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.formSub {
  font-size: 13px;
  color: #5b5f6b;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 15px;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #5b5f6b;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.field input, .field select {
  width: 100%;
  padding: 12px 13px;
  border: 1.5px solid #e5e1d6;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  background: #f7f5ef;
  color: #1f2430;
  transition: all 0.15s ease;
}
.field input:focus, .field select:focus {
  outline: 2.5px solid #ffcb08;
  border-color: transparent;
  background: #fff;
}

.formFine {
  font-size: 11px;
  color: #5b5f6b;
  margin-top: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.success {
  text-align: center;
  padding: 16px 0;
  animation: fadeIn 0.3s ease-out;
}

.successCheck {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2e7d51;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  font-weight: bold;
}

.successTitle {
  margin-bottom: 6px;
  font-size: 18px;
}

.successText {
  font-size: 13.5px;
  color: #5b5f6b;
  margin-bottom: 14px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Countdown ===== */
.countdownStrip {
  background: #fff9e6;
  border-top: 1px solid rgb(255, 229.8421052632, 135.5);
  border-bottom: 1px solid rgb(255, 229.8421052632, 135.5);
}

.countdownInner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 14px 24px;
  text-align: center;
  max-width: 1120px;
  margin: 0 auto;
}

.countdownLabel {
  font-size: 13.5px;
  font-weight: 700;
  color: #003b66;
}

.countdownTimer {
  display: flex;
  gap: 10px;
}

.ctBlock {
  background: #fff;
  border: 1px solid rgb(255, 229.8421052632, 135.5);
  border-radius: 6px;
  padding: 6px 10px;
  min-width: 52px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.ctBlock b {
  display: block;
  font-size: 18px;
  color: #003b66;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.ctBlock span {
  display: block;
  font-size: 9.5px;
  color: #5b5f6b;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== Trust ===== */
.trustGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 900px) {
  .trustGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .trustGrid {
    grid-template-columns: 1fr;
  }
}
.trustItem {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  padding: 14px;
  border: 1px solid #e5e1d6;
  border-radius: 8px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trustItem svg {
  margin-top: 2px;
  color: rgb(212, 167.3684210526, 0);
  flex-shrink: 0;
}
.trustItem:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 59, 102, 0.05);
  border-color: rgba(0, 59, 102, 0.25);
}

/* ===== Exams ===== */
.whyAlt {
  background: #f7f5ef;
}

.examCols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 980px) {
  .examCols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .examCols {
    grid-template-columns: 1fr;
  }
}
.examCol {
  border: 1px solid #e5e1d6;
  border-radius: 10px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 59, 102, 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.examCol h3 {
  font-size: 17px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.examCol h3 svg {
  color: rgb(212, 167.3684210526, 0);
}
.examCol:hover {
  border-color: rgba(0, 59, 102, 0.2);
  box-shadow: 0 4px 16px rgba(0, 59, 102, 0.05);
}

.tagchip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tagchip span {
  background: #f7f5ef;
  border: 1px solid #e5e1d6;
  color: #003b66;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  transition: all 0.15s ease;
}
.tagchip span:hover {
  background: #003b66;
  color: #fff;
  border-color: #003b66;
}

/* ===== WhyChoose ===== */
.whyGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 820px) {
  .whyGrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .whyGrid {
    grid-template-columns: 1fr;
  }
}
.whyCard {
  background: #fff;
  border: 1px solid #e5e1d6;
  border-radius: 10px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.whyCard h4 {
  font-size: 15.5px;
  margin-bottom: 6px;
  color: #003b66;
}
.whyCard p {
  font-size: 13.5px;
  color: #5b5f6b;
}
.whyCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 59, 102, 0.06);
  border-color: rgba(0, 59, 102, 0.2);
}
.whyCard:hover .iconCircle {
  background: #003b66;
  color: #fff;
  border-color: #003b66;
}

.iconCircle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f7f5ef;
  border: 1px solid #e5e1d6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.2s ease;
  color: #003b66;
}

/* ===== Highlights ===== */
.whyAlt {
  background: #f7f5ef;
}

.highlightGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 26px;
}
.highlightGrid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  padding: 10px 0;
  border-bottom: 1px dashed #e5e1d6;
  color: #1f2430;
}
.highlightGrid li .checkMark {
  color: #2e7d51;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .highlightGrid {
    grid-template-columns: 1fr;
  }
}

/* ===== Process ===== */
.processGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

@media (max-width: 900px) {
  .processGrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .processGrid {
    grid-template-columns: 1fr;
  }
}
.processStep {
  background: #fff;
  border: 1px solid #e5e1d6;
  border-radius: 10px;
  padding: 22px;
  position: relative;
  transition: all 0.2s ease;
}
.processStep h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #003b66;
}
.processStep p {
  font-size: 13px;
  color: #5b5f6b;
}
.processStep:hover {
  border-color: #003b66;
  box-shadow: 0 6px 20px rgba(0, 59, 102, 0.05);
}
.processStep:hover .stepNum {
  background: #ffcb08;
  color: #003b66;
}

.stepNum {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #003b66;
  color: #ffcb08;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.2s ease;
}

/* ===== Patterns ===== */
.whyAlt {
  background: #f7f5ef;
}

.patternCols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 700px) {
  .patternCols {
    grid-template-columns: 1fr;
  }
}
.patternCol {
  border-radius: 10px;
  padding: 26px;
  transition: all 0.2s ease;
}
.patternCol h3 {
  font-size: 17px;
  margin-bottom: 18px;
}
.patternCol.bank {
  background: #003b66;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 59, 102, 0.15);
}
.patternCol.bank h3 {
  color: #fff;
}
.patternCol.ssc {
  background: #fff;
  border: 1px solid #e5e1d6;
  box-shadow: 0 2px 8px rgba(0, 59, 102, 0.02);
}
.patternCol.ssc h3 {
  color: #003b66;
}
.patternCol:hover {
  transform: translateY(-2px);
}
.patternCol:hover.bank {
  box-shadow: 0 8px 24px rgba(0, 59, 102, 0.25);
}
.patternCol:hover.ssc {
  border-color: rgba(0, 59, 102, 0.2);
  box-shadow: 0 6px 16px rgba(0, 59, 102, 0.05);
}

.patternTags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.patternTags .bankTag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 12.5px;
  padding: 7px 12px;
  border-radius: 16px;
  transition: all 0.15s ease;
}
.patternTags .bankTag:hover {
  background: #fff;
  color: #003b66;
}
.patternTags .sscTag {
  background: #f7f5ef;
  border: 1px solid #e5e1d6;
  color: #003b66;
  font-size: 12.5px;
  padding: 7px 12px;
  border-radius: 16px;
  font-weight: 600;
  transition: all 0.15s ease;
}
.patternTags .sscTag:hover {
  background: #003b66;
  color: #fff;
  border-color: #003b66;
}

/* ===== Results ===== */
.orgGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.orgChip {
  border: 1px solid #e5e1d6;
  background: #fff;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 13.5px;
  font-weight: 700;
  color: #003b66;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 59, 102, 0.01);
}
.orgChip:hover {
  transform: translateY(-2px);
  border-color: #ffcb08;
  color: rgb(186.5, 147.2368421053, 0);
  box-shadow: 0 4px 12px rgba(0, 59, 102, 0.05);
}

.successNote {
  font-size: 13px;
  color: #5b5f6b;
  margin-top: 16px;
}

/* ===== FAQ ===== */
@charset "UTF-8";
.whyAlt {
  background: #f7f5ef;
}

.faqList {
  max-width: 760px;
  margin: 0 auto;
}

.faqItem {
  border-bottom: 1px solid #e5e1d6;
}
.faqItem summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 4px;
  font-weight: 700;
  font-size: 15px;
  color: #003b66;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s ease;
}
.faqItem summary::-webkit-details-marker {
  display: none;
}
.faqItem summary::after {
  content: "+";
  font-size: 20px;
  color: rgb(212, 167.3684210526, 0);
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faqItem summary:hover {
  color: rgb(0, 88.5, 153);
}
.faqItem[open] summary::after {
  content: "–";
}

.faqA {
  padding: 0 4px 18px;
  font-size: 14px;
  color: #5b5f6b;
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== CTA ===== */
.ctaFinal {
  background: #003b66;
  color: #fff;
  text-align: center;
}
.ctaFinal h2 {
  color: #fff;
  font-size: clamp(24px, 3.2vw, 34px);
  margin-bottom: 12px;
}
.ctaFinal p {
  color: #c6cfe0;
  font-size: 15.5px;
  max-width: 52ch;
  margin: 0 auto 28px;
}

.heroActions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.contactLines {
  margin-top: 26px;
  font-size: 13.5px;
  color: #9fafc9;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contactLines a {
  color: #fff;
  font-weight: 700;
  transition: color 0.15s ease;
}
.contactLines a:hover {
  color: #ffcb08;
}

/* ===== Footer ===== */
.footer {
  background: #081b33;
  color: #8fa0c0;
  padding: 44px 0 100px;
}
.footer h6 {
  color: #fff;
  font-size: 14.5px;
  margin-bottom: 8px;
}

.footGrid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.fmuted {
  font-size: 13px;
  line-height: 1.8;
}

.footBottom {
  border-top: 1px solid #16294a;
  padding-top: 16px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* Sticky mobile CTA */
.stickyMobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #003b66;
  border-top: 3px solid #ffcb08;
  display: none;
  padding: 10px 16px;
  gap: 10px;
}
.stickyMobile .btn {
  flex: 1;
  justify-content: center;
}

@media (max-width: 760px) {
  .stickyMobile {
    display: flex;
    justify-content: center;
  }
}
/* Floating WhatsApp */
.waFloat {
  position: fixed;
  bottom: 88px;
  right: 20px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
}
.waFloat:hover {
  transform: scale(1.1);
}

@media (min-width: 761px) {
  .waFloat {
    bottom: 26px;
  }
}
/* Exit intent popup */
.exitOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 59, 102, 0.55);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.exitOverlay.show {
  display: flex;
}

.exitModal {
  background: #fff;
  border-radius: 10px;
  max-width: 420px;
  width: 100%;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: modalPop 0.25s ease-out;
}
.exitModal h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: #003b66;
}
.exitModal p {
  font-size: 14px;
  color: #5b5f6b;
  margin-bottom: 18px;
}

.exitClose {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  color: #5b5f6b;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.15s ease;
}
.exitClose:hover {
  color: #003b66;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.field {
  margin-bottom: 15px;
  text-align: left;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #5b5f6b;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.field input {
  width: 100%;
  padding: 12px 13px;
  border: 1.5px solid #e5e1d6;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  background: #f7f5ef;
  color: #1f2430;
  transition: all 0.15s ease;
}
.field input:focus {
  outline: 2.5px solid #ffcb08;
  border-color: transparent;
  background: #fff;
}

