/* =============================================
   EXISTING STYLES (unchanged)
   ============================================= */

html {
  margin: 0 !important;
}
header {
  display: none;
}
.multi-login-container {
    display: flex;
    min-height: 100vh;
}
.login-banner-hero {
  position: relative;
  width: max(40%, 440px);
  display: flex;
  padding: 70px 50px;
}
.login-banner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/get-started-cover.png') center / cover no-repeat;
  transform: scaleY(-1);
  z-index: -1;
}
.login-banner-topbar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 235px;
  width: 372px;
  justify-content: center;
}
.login-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: .25rem;
    line-height: 1.3;
    text-wrap: pretty;
}
.multi-login-options-container {
    width: 100%;
    padding: 60px 50px 84px 50px;
    background-color: #EBEDF0;
}
.multi-login-get-help-title {
    font-size: 14px;
    color: #9FA2B4;
    margin: 0;
}
.multi-login-options-container a {
    color: #253292;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.get-help-container {
    display: flex;
    gap: 5px;
    justify-content: end;
    padding-right: 5px;
    margin-bottom: 60px;
}
.get-started2025-countries {
    margin-top: 200px;
    margin-bottom: 200px;
    position: relative;
    background-color: white;
}
.multi-login-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
}
.login-banner-title {
  font-size: 30px;
  color: white;
  font-weight: 700;
  line-height: 1.3 !important;
}
.login-banner-subtitle {
  font-size: 16px;
  color: white;
  font-weight: 600;
  line-height: 22px;
  text-wrap: pretty;
}
.multi-login-card-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.login-card {
  border: 2px solid #DFE0EB;
  border-radius: 12px;
  border-bottom: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-color: white;
}
.login-card-content {
  display: flex;
  gap: 20px;
  padding: 24px 20px;
  justify-content: space-between;
  align-items: center;
}
.login-card-content a {
    height: 48px;
    font-weight: 600;
    font-size: 14px;
}
.login-card-content-container {
  display: flex;
  gap: 15px;
  align-items: center;
}
.login-card-text-container {
  width: 90%;
}
.login-card-description {
  font-size: 12px;
  font-weight: 400;
  color: #252733;
  line-height: 16px;
  text-align: left;
  margin: 0;
  text-wrap: pretty;
}
.get-started-card-button {
    justify-content: space-between;
    max-width: 160px;
}
.get-started-card-title {
  font-size: 22px;
  font-weight: 600;
}
.get-started-card-flag {
  width: 65px;
  height: 65px;
}
.login-card-cta-text {
    justify-content: center;
    background-color: #DFE0EB;
    width: 100%;
    height: 52px;
    padding: 4px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    display: flex;
    align-items: center;
}
.login-card-cta-text p {
    font-size: 12px;
    font-weight: 600;
    color: #252733;
    display: contents;
}
.login-card-cta-text a {
    color: #0022FF;
    margin-left: 5px;
}
.page-template-get_started .fixed-top {
    position: sticky !important;
}


/* =============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================= */

@media (max-width: 1024px) {
  .login-banner-hero {
    width: 45%;
    padding: 50px 30px;
  }

  .login-banner-topbar {
    width: 100%;
    margin-top: 290px;
  }

  .multi-login-options-container {
    padding: 40px 30px 60px 30px;
  }

  .login-banner-title {
    font-size: 26px !important;
  }
}


/* =============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================= */

@media (max-width: 768px) {
  /* Stack hero + options vertically */
  .multi-login-container {
    flex-direction: column;
  }
  .login-banner-hero {
    width: 100%;
    height: 300px;
    padding: 30px 20px 36px 20px;
    min-height: unset;
    background: url('../img/get-started-cover.png') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-size: auto;
  }

  .login-banner-hero::before {
    display: none;
  }

  .login-banner-hero > div {
    width: 100%;
  }

  /* Remove the tall margin; let content flow naturally */
  .login-banner-topbar {
    margin-top: 48px;
    width: 100%;
    height: auto;
  }

  .login-banner-title {
    font-size: 26px !important;
    text-align: center;
  }

  .login-banner-subtitle {
    font-size: 14px;
    text-align: center;
    margin-top: 6px;
  }

  /* Options section takes full width */
  .multi-login-options-container {
    width: 100%;
    padding: 24px 16px 40px 16px;
    box-sizing: border-box;
  }

  /* Help link stays right-aligned but with less padding */
  .get-help-container {
    display: none;
  }

  /* Card inner layout: stack flag+text above button */
  .login-card-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 36px;
  }

  /* Button stretches full width on mobile */
  .login-card-content a {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
  }

  /* Flag + text row stays horizontal */
  .login-card-content-container {
    width: 100%;
    flex-direction: column;
  }
  .login-card-text-container {
    width: auto;
    flex: 1;
  }

  .login-card-title {
    font-size: 16px;
    text-align: center;
  }

  .login-card-description {
    line-height: 22px;
    text-align: center;
  }

  .get-started-card-flag {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
  
  .get-started-card-button {
    justify-content: space-between !important;
    max-width: 280px;
    align-self: center;
  }

  /* CTA footer row wraps on very small screens */
  .login-card-cta-text {
    height: auto;
    min-height: 44px;
    padding: 8px 12px;
    text-align: center;
    flex-wrap: wrap;
  }

  .login-card-cta-text p {
    display: inline;
    line-height: 1.5;
    margin: 0;
  }
}


/* =============================================
   RESPONSIVE — SMALL MOBILE (≤400px)
   ============================================= */

@media (max-width: 400px) {
  .login-banner-hero {
    width: 100%;
    height: 300px;
    padding: 30px 20px 36px 20px;
    min-height: unset;
    background: url('../img/get-started-cover.png') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-size: auto;
  }

  .login-banner-hero::before {
    display: none;
  }
  .login-banner-title {
    font-size: 26px !important;
    text-align: center;
  }

  .get-started-card-flag {
    width: 40px;
    height: 40px;
  }

  .login-card-title {
    font-size: 20px;
  }
}