/* Site-wide CSS File */

body {
    background-color: #E7E8FC;
}

main {
    margin-top: 131px;
}

h1, h2, h3, h4, h5, h6, * {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.bg-blue,
.btn-blue,
.btn-blue:hover,
.btn-blue:active,
.btn-blue:focus {
    background-color: #627CEA;
    color: #fff;
}

.bg-pink,
.btn-pink,
.btn-pink:hover,
.btn-pink:active,
.btn-pink:focus {
    background-color: #d82388;
    color: #fff;
}

.text-blue {
    color: #627CEA !important;
}

.text-pink {
    color: #d82388 !important;
}

.border-blue {
    border-color: #627CEA !important;
}

.border-pink {
    border-color: #d82388 !important;
}

.nav-link.active {
    color: #d82388 !important;
    text-decoration: underline !important;
}

.finger {
    cursor: pointer;
}

.hidden {
    display: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    z-index: 1000;
    display: none;
}

.otp-input {
    width: 3rem;
    height: 3rem;
    text-align: center;
    font-size: 1.5rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    margin-right: 0.5rem;
}

.otp-input:last-child {
    margin-right: 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}


.breadcrumbs-registration {
    font-size: 1.25em;
    line-height: 1.5em;
}
.breadcrumbs-registration .completed {
    font-weight: bold;
    color: #198754;
}
.breadcrumbs-registration .active {
    font-weight: bold;
    color: #d82388;
}
.breadcrumbs-registration .pending {
    font-weight: normal;
}


#bgGreySwoosh {
    background-image: url('/images/bg-grey-swoosh.png');
    background-size: cover;
    background-position: center 0;
    background-repeat: no-repeat;
    transition: background-position 0.3s ease, background-attachment 0.3s ease;
}

#bgDontRiskMissingSomethingImportant {
    background-image: url('/images/bg-dont-risk-missing-something-important.jpg');
    background-size: cover;
    background-position: right center;
    color: #ffffff;
    padding: 50px 0 50px 0;
}
@media screen and (max-width: 992px) {
    #bgDontRiskMissingSomethingImportant {
        background-position: left center;
    }
}

#bgSeeHowYouScore {
    background-image: url('/images/bg-laptop.png');
    background-size: cover;
    background-position: center center;
}

#bgSeeHowYouScoreOverlay {
    background-color: rgba(1,35,59, 0.9);
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}






/* Minimal, responsive, and non-blocking cookie banner */
  #cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: #fff;
    color: #111;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    z-index: 99999;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    max-width: 980px;
    transition: transform .28s ease, opacity .28s ease;
  }
  #cookie-banner.hidden { opacity: 0; transform: translateY(12px); pointer-events: none; }
  #cookie-banner p { margin: 0; font-size: 14px; line-height: 1.35; color: #222; }
  #cookie-actions { display:flex; gap:8px; align-items:center; }
  .btn {
    border: 0; padding: 8px 12px; border-radius: 8px; font-weight:600; cursor:pointer;
    font-size:13px;
  }
  .btn-primary { background: #0b74de; color: #fff; }
  .btn-ghost { background: transparent; color: #0b74de; border: 1px solid rgba(11,116,222,.12); }
  .btn-secondary { background: #f2f4f7; color: #111; }
  #cookie-settings {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.98);
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    z-index: 100000;
    max-width: 420px;
    width: calc(100% - 40px);
    display:none;
    gap: 12px;
  }
  #cookie-settings.open { display: grid; }
  #cookie-settings h3 { margin: 0 0 6px 0; font-size:16px; }
  .setting { display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-top:1px solid #f0f0f0; }
  .setting:first-of-type { border-top:0; }
  .toggle { width:42px; height:24px; background:#e9eef8; border-radius:999px; position:relative; cursor:pointer; }
  .toggle .knob { position:absolute; top:3px; left:3px; width:18px; height:18px; border-radius:50%; background:white; transition:left .18s; box-shadow:0 2px 6px rgba(0,0,0,.12); }
  .toggle.on { background:#0b74de; }
  .toggle.on .knob { left:21px; }
  .muted { color:#555; font-size:13px; }
  @media (max-width:520px){
    #cookie-banner { grid-template-columns: 1fr; padding:12px; left:12px; right:12px; bottom:12px; }
    #cookie-actions { justify-content:flex-end; }
  }