.input-error {
  border-color: #f44336 !important;
}

@keyframes pulse-error {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.error-pulse {
  animation: pulse-error 0.5s ease-in-out infinite;
  border-radius: 4px;
}

:root {
  --bg-main: #131516;
  --bg-footer: #202223;
  --txt: #fff;
  --muted: #d3d3d3;
  --accent: #f8c51b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--bg-main);
  color: var(--txt);
  font-family: "Red Hat Display", Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
}

.sidebar {
  width: 260px;
  background: #1a1d20;
  border-right: 1px solid #2a2c2d;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  align-self: flex-start;
  z-index: 20;
}

.sidebar-mobile-header {
  display: none;
}

.sidebar-close {
  display: none;
}

.sidebar-top-strip {
  display: none;
}

.igaming-logo {
  width: 82px;
  height: auto;
}

.sidebar-inner {
  padding: 24px 24px 0;
}

.brand-wordmark {
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.brand--side .brand-wordmark {
  font-size: 38px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-align: center;
}

.brand--center .brand-wordmark {
  font-size: 54px;
}

/* SVG logos: mobile header, footer, sidebar */
.brand-logo-img {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
}

.sidebar-inner .brand--side .brand-logo-img--sidebar {
  width: 100%;
  max-width: 140px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.mobile-header .brand-logo-img {
  height: 28px;
  width: auto;
  max-width: min(164px, 55vw);
}

.footer .brand--center .brand-logo-img {
  height: auto;
  width: min(100%, 220px);
  max-height: 48px;
  margin-left: auto;
  margin-right: auto;
}

.auth-buttons {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  height: 44px;
}

.btn-signup {
  background: #f8c51b;
  color: #202223;
}

.btn-login {
  border: 1px solid #d3d3d3;
}

.side-nav {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.side-nav a {
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1;
}

.menu-ico {
  width: 20px;
  height: 20px;
  stroke: #fff;
  opacity: 0.8;
}

.side-nav a:hover .menu-ico {
  opacity: 1;
}

.sidebar-bottom {
  margin-top: auto;
  border-top: 1px solid #2a2c2d;
  padding: 16px 24px;
  color: #e9e9e9;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-chat-status {
  display: flex;
  align-items: center;
}

.content-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mobile-header,
.top-header {
  display: none;

}

.top-license-strip {
  background: var(--bg-main);
  border-bottom: 1px solid #2a2c2d;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.igaming-logo-top {
  height: 35px;
  color:white
}

.license-text {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.footer-area {
  background: var(--bg-footer);
  border-top: 1px solid #2a2c2d;
  display: flex;
  justify-content: center;
}

.hero {
  background: url('assets/welcomeOffer.png') center/cover no-repeat;
  aspect-ratio: 21 / 9;
  min-height: 280px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.hero-overlay-box {
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 24px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1023px) {
  .hero-overlay-box {
     padding: 16px 20px;
     grid-template-columns: 1fr;
     text-align: center;
  }
}

.hero-overlay-box h3 {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: #f8c51b;
  font-size: 20px;
}

.hero-overlay-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #eee;
}

.hero-overlay-box p a {
  color: #f8c51b;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.btn-hero {
  background: #f8c51b;
  color: #111;
  padding: 0 48px;
  height: 48px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  border: none;
  box-sizing: border-box;
}

.hero-btn-wrap span {
  font-size: 11px;
  opacity: 0.8;
}

.search-area {
  position: relative;
  padding: 40px 24px 300px;
}

.search-container {
  max-width: 480px;
  margin: 0;
}

.search-input-wrap {
  position: relative;
  width: 100%;
}

.search-input-wrap input {
  width: 100%;
  height: 44px;
  background: transparent;
  border: 1px solid #444;
  border-radius: 4px;
  color: #fff;
  padding: 0 40px 0 16px;
  font-size: 15px;
}

.search-ico {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.search-empty-state {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 98px;
  min-height: 240px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  padding-top: 40px;
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.search-empty-state.show {
  opacity: 1;
  visibility: visible;
}

.search-empty-state h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
}

.search-empty-state p {
  margin: 0;
  font-size: 18px;
  color: #c9c9c9;
}

.footer {
  width: min(980px, 100%);
  text-align: center;
  padding: 34px 24px 46px;
}

.footer-nav {
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
}

.footer-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  opacity: 0.8;
}

.footer-nav a:hover {
  opacity: 1;
}

.social {
  list-style: none;
  margin: 18px 0 18px;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--accent);
}

.social a {
  text-decoration: none;
  color: var(--accent);
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
}

.social img,
.social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.legal {
  max-width: 1230px;
  margin: 0 auto;
  color: #fff;
}

.legal p {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.35;
}

.legal a {
  text-decoration: underline;
}

.payments {
  margin-top: 18px;
}

.payments strong {
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  color: #fff;
}

.payment-logos {
  margin-top: 4px;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  font-weight: 800;
}

.payment-logos span:nth-child(1) { font-size: 50px; }
.visa-word { font-size: 26px; font-style: italic; letter-spacing: -0.02em; }
.mc-ico {
  width: 30px;
  height: 18px;
  position: relative;
  display: inline-block;
}
.mc-ico::before,
.mc-ico::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.mc-ico::before {
  left: 0;
  background: #fff;
  opacity: 0.95;
}
.mc-ico::after {
  right: 0;
  background: #dbdbdb;
  opacity: 0.9;
}
.interac-ico {
  font-size: 8px;
  border: 1px solid #fff;
  padding: 3px 5px;
  border-radius: 2px;
  line-height: 1;
  text-transform: lowercase;
}

.regs {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.regs img {
  height: 22px;
  width: auto;
}

.ontario-only {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.rg-circle {
  width: 22px;
  height: 22px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 10px;
}

.rg-check {
  background: #2a2c2d;
  color: #fff;
  padding: 2px 4px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  font-weight: 800;
  font-size: 7px;
  position: relative;
  width: 24px;
  height: 22px;
  justify-content: center;
}

.rg-check .rg-sub-text {
  font-size: 5px;
  font-weight: 800;
}

.rg-check .rg-text {
  font-size: 9px;
  font-weight: 800;
  margin-bottom: -1px;
}

.rg-check .check-mark {
  position: absolute;
  right: -3px;
  top: -3px;
  line-height: 1;
  color: #fff;
  background: #d8c99a;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: grid;
  place-items: center;
  font-size: 8px;
}

.bottom-fill {
  display: none;
}

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 1023px) {
  .sidebar {
    display: none;
  }

  .top-license-strip {
    height: 32px;
    padding: 0 12px;
  }

  .license-text {
    font-size: 10px;
  }

  .mobile-header {
    display: flex;
    height: 64px;
    background: #111;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    border-bottom: 2px solid #2a2c2d;
    margin-bottom: 24px;
  }

  .promo-page-content {
    padding-top: 24px !important;
    padding-bottom: 40px !important;
  }

  .search-area {
    padding-top: 24px !important;
    padding-bottom: 60px !important;
  }

  .hero {
    margin-top: 20px;
  }

  .leaderboard-hero {

    margin-top: 24px;
  }

  .ranking-container {
    margin-bottom: 40px;
  }

  .promotions-hero {
    margin-top: 20px;
  }

  .promotions-wrapper {
    padding-top: 20px !important;
    padding-bottom: 40px !important;
  }



  .header-btns {
    display: flex;
    gap: 8px;
  }

  .header-btns .btn {
    height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .sidebar {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -260px;
    z-index: 1001;
    transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 10px 0 30px rgba(0,0,0,0.5);
  }

  .sidebar-active .sidebar {
    left: 0;
  }

  .sidebar-active::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(2px);
    z-index: 1000;
  }

  .sidebar-close {
    display: flex;
    position: absolute;
    right: 12px;
    top: 12px;
    width: 32px;
    height: 32px;
    background: #2a2c2d;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
  }

  .sidebar-inner {
    padding-top: 50px;
  }

  .mobile-header .brand-logo-img {
    height: 24px;
    max-width: min(150px, 50vw);
  }

  .top-actions {
    display: flex;
    grid-column: 2 / 3;
    grid-row: 2;
    justify-content: flex-end;
    margin-left: 0;
  }

  .top-actions .btn {
    height: 40px;
    font-size: 12px;
    padding: 0 20px;
    border-radius: 6px;
  }

  .footer {
    padding: 28px 14px 80px;
  }

  .header-nav {
    display: none;
  }

  .top-left-brand .brand-wordmark {
    font-size: 20px;
  }

  .hero {
    aspect-ratio: 16 / 9;
    background-position: top center;
  }

  .hero-overlay-box {
    margin: 0;
    width: 100%;
  }

  .search-area {
    padding: 24px 16px 150px;
  }

  .search-container {
    max-width: 100%;
  }

  .search-empty-state {
    left: 16px;
    right: 16px;
    top: 78px;
    min-height: 180px;
    padding-top: 28px;
  }

  .search-empty-state h2 {
    font-size: 22px;
  }

  .search-empty-state p {
    font-size: 16px;
  }

  .legal p {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .social {
    margin: 18px 0 16px;
  }

  .social a {
    width: 30px;
    height: 30px;
  }

  .social img,
  .social svg {
    width: 22px;
    height: 22px;
  }

  .payments strong {
    font-size: 16px;
  }

  .visa-word { font-size: 48px; }
  .mc-ico {
    width: 42px;
    height: 26px;
  }
  .mc-ico::before,
  .mc-ico::after {
    width: 22px;
    height: 22px;
  }
  .interac-ico {
    font-size: 12px;
    padding: 5px 6px;
  }

  .regs {
    margin-top: 16px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .regs img {
    height: 22px;
  }

  .ontario-only {
    font-size: 15px;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 72px;
    background: #1c1f23;
    border-top: 1px solid #2a2c2d;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
  }

  .mob-ico {
    margin-top: 8px;
    margin-bottom: 4px;
    color: #fff;
    opacity: 0.8;
    width: 20px;
    height: 20px;
  }

  .mobile-bottom-nav a {
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
  }

  .mobile-bottom-nav a:hover .mob-ico {
    opacity: 1;
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  background: #1a1d1f;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.9);
}

.modal-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #2a2c2d;
}

.modal-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex: 1;
  text-align: center;
}

.modal-close, .modal-back {
  cursor: pointer;
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.2s;
  padding: 10px;
}

.modal-close:hover, .modal-back:hover {
  opacity: 1;
}

.modal-body {
  padding: 30px;
  flex: 1;
  overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}
.modal-body::-webkit-scrollbar-track {
  background: #111;
}
.modal-body::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}

.step-indicator {
  display: flex;
  gap: 8px;
  padding: 0 30px 20px;
}

.step-tab {
  height: 4px;
  flex: 1;
  background: #3a3c3d;
  border-radius: 2px;
}

.step-tab.completed { background: #4caf50; }
.step-tab.active { background: #f8c51b; }

.form-group {
  margin-bottom: 20px;
}

.input-row {
  display: flex;
  gap: 12px;
}

.input-row .form-group { flex: 1; }

.cta-input-wrap {
  position: relative;
}

.cta-input {
  width: 100%;
  height: 52px;
  background: #2a2c2d;
  border: 1px solid #3a3c3d;
  border-radius: 6px;
  padding: 0 40px 0 16px;
  color: #fff;
  font-size: 14px;
  transition: border-color 0.2s;
}

.cta-input:focus {
  outline: none;
  border-color: #f8c51b;
}

.cta-input.valid { border-color: #4caf50; }
.cta-input.error { border-color: #f44336; }

.input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.valid + .input-icon.valid-ico { display: block; color: #4caf50; }
.error + .input-icon.error-ico { display: block; color: #f44336; }

.gender-select {
  display: flex;
  gap: 24px;
  margin: 10px 0 20px;
}

.gender-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
}

.gender-label input { display: none; }

.radio-dot {
  width: 20px;
  height: 20px;
  border: 2px solid #3a3c3d;
  border-radius: 50%;
  position: relative;
}

.gender-label input:checked + .radio-dot {
  border-color: #f8c51b;
}

.gender-label input:checked + .radio-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #f8c51b;
  border-radius: 50%;
}

.dob-hint {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
}

.custom-select {
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
}

.error-text {
  color: #f44336;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

.cta-input.error ~ .error-text { display: block; }

.checkbox-group {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.checkbox-label {
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  color: #ccc;
  cursor: pointer;
}

.checkbox-label b { color: #f8c51b; }

.check-box {
  width: 18px;
  height: 18px;
  border: 2px solid #3a3c3d;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-group input { display: none; }

.checkbox-group input:checked + .check-box {
  background: #f8c51b;
  border-color: #f8c51b;
}

.checkbox-group input:checked + .check-box::after {
  content: '✓';
  color: #111;
  font-weight: 900;
  font-size: 12px;
}

.nested-box {
  background: #2a2c2d;
  padding: 16px;
  border-radius: 6px;
  margin-top: 10px;
}

.btn-continue {
  width: 100%;
  height: 52px;
  background: #f8c51b;
  color: #111;
  border: none;
  border-radius: 6px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  text-transform: uppercase;
}

.play-responsibly-modal {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin-top: 20px;
  display: block;
}

.prefix-input-wrap {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

.pw-requirements {
  background: #2a2c2d;
  padding: 16px;
  border-radius: 6px;
  margin-top: 10px;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.pw-requirements.hidden {
  display: none;
}

.additional-info-section {
  display: none;
}
.additional-info-section.active {
  display: block;
}

.pep-sub-fields {
  display: none;
  margin-top: 15px;
  padding-left: 10px;
  border-left: 2px solid #f8c51b;
}
.pep-sub-fields.active {
  display: block;
}

.dob-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}
.pw-requirements strong {
  display: block;
  font-size: 13px;
  color: #fff;
  margin-bottom: 8px;
}
.pw-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pw-requirements li {
  font-size: 13px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.pw-requirements li::before {
  content: '●';
  font-size: 8px;
  color: #fff;
}

/* —— Login modal —— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.login-modal-container {
  max-width: 440px;
  background: #212121;
}

.login-modal-body {
  padding: 28px 32px 36px;
}

.login-subtitle {
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 28px;
  line-height: 1.4;
}

.login-input-email {
  border: 2px solid #f8c51b !important;
  background: #2a2c2d;
}

.login-input-email:focus {
  outline: none;
  border-color: #f8c51b !important;
  box-shadow: 0 0 0 1px rgba(248, 197, 27, 0.25);
}

.login-input-password {
  border: 2px solid #4caf50 !important;
  background: #2a2c2d;
  padding-right: 48px;
}

.login-input-password:focus {
  outline: none;
  border-color: #4caf50 !important;
  box-shadow: 0 0 0 1px rgba(76, 175, 80, 0.25);
}

.login-password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #fff;
  opacity: 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.login-password-toggle:hover {
  opacity: 1;
}

.login-eligible-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin: 4px 0 24px;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.login-eligible-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.login-checkbox-box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #fff;
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}

.login-eligible-label input:checked + .login-checkbox-box {
  background: #f8c51b;
  border-color: #f8c51b;
}

.login-eligible-label input:checked + .login-checkbox-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #111;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.login-eligible-text {
  flex: 1;
}

.login-eligible-highlight {
  color: #f8c51b;
  font-weight: 700;
}

.login-info-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 11px;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 1px;
  flex-shrink: 0;
  opacity: 0.95;
}

.btn-login-submit {
  width: 100%;
  height: 52px;
  background: #f8c51b;
  color: #111;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0.02em;
  transition: filter 0.15s;
}

.btn-login-submit:hover {
  filter: brightness(1.05);
}

.login-footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.login-footer-links a {
  color: #f8c51b;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.login-footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .login-modal-body {
    padding: 22px 20px 32px;
  }
}

