:root {
  --navy-950: #03091d;
  --navy-900: #071334;
  --navy-800: #0b2450;
  --blue-600: #157cf1;
  --blue-500: #159cf4;
  --cyan-400: #43d7f7;
  --ink: #0a1022;
  --muted: #687085;
  --line: #dfe4ec;
  --panel-line: rgba(161, 188, 234, 0.19);
  --white: #ffffff;
  --slide-duration: 7000ms;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f6f8fc;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-width: 320px;
}

button,
input {
  font: inherit;
}

button,
a,
input,
label {
  -webkit-tap-highlight-color: transparent;
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(580px, 1.12fr) minmax(470px, 0.88fr);
  min-height: 100vh;
  overflow: hidden;
}

.information-panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 14%, rgba(35, 100, 224, 0.35), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(20, 174, 237, 0.23), transparent 34%),
    linear-gradient(135deg, #081a48 0%, var(--navy-950) 56%, #041125 100%);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(167, 199, 255, 0.65) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 199, 255, 0.65) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 88%);
}

.glow {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
}

.glow-top {
  top: -280px;
  left: -170px;
  background: #1f6cff;
}

.glow-bottom {
  right: -300px;
  bottom: -210px;
  background: #00c6ff;
}

.information-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 780px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(42px, 6vh, 70px) clamp(38px, 7vw, 62px) 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  padding: 6px 11px 6px 7px;
  color: #c9dcff;
  border: 1px solid rgba(119, 176, 255, 0.33);
  border-radius: 999px;
  background: rgba(48, 106, 194, 0.17);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.shield-icon {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: #86eaff;
  border: 1px solid rgba(76, 214, 255, 0.45);
  border-radius: 7px 7px 10px 10px;
  font-size: 10px;
}

.title-block {
  margin-top: clamp(25px, 3.2vh, 36px);
}

.section-kicker,
.carousel-kicker {
  margin: 0;
  color: #67c9ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.title-block h1 {
  max-width: 620px;
  margin: 7px 0 12px;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.intro-copy {
  max-width: 600px;
  margin: 0;
  color: #aebed9;
  font-size: clamp(14px, 1vw, 15.5px);
  font-weight: 500;
  line-height: 1.55;
}

.carousel {
  position: relative;
  width: 100%;
  margin-top: clamp(24px, 3.5vh, 36px);
  border: 1px solid var(--panel-line);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(28, 76, 124, 0.17));
  box-shadow: 0 30px 80px rgba(0, 3, 17, 0.32);
  backdrop-filter: blur(14px);
}

.carousel-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 24px 0;
}

.carousel-count {
  margin: 7px 0 0;
  color: #7f91ae;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.carousel-count span {
  color: #f3f7ff;
  font-weight: 800;
}

.pause-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: #aabbd6;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.pause-button:hover,
.pause-button:focus-visible {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.pause-bars,
.pause-bars::after {
  display: block;
  width: 3px;
  height: 10px;
  border-radius: 2px;
  background: currentColor;
}

.pause-bars {
  position: relative;
  margin-right: 4px;
}

.pause-bars::after {
  position: absolute;
  left: 6px;
  content: "";
}

.pause-button.is-paused .pause-bars {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
  border-radius: 0;
  background: transparent;
}

.pause-button.is-paused .pause-bars::after {
  display: none;
}

.slides-viewport {
  position: relative;
  min-height: 270px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
  padding: 21px 24px 18px;
  opacity: 0;
  transform: translateX(34px);
  pointer-events: none;
  transition: opacity 350ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slide.is-leaving {
  transform: translateX(-34px);
}

.slide-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #7ce7ff;
  border: 1px solid rgba(57, 199, 244, 0.25);
  border-radius: 13px;
  background: rgba(21, 139, 216, 0.13);
  font-size: 20px;
  font-weight: 800;
}

.legal-icon {
  color: #a4b9ff;
  border-color: rgba(118, 138, 255, 0.27);
  background: rgba(87, 87, 212, 0.14);
}

.document-icon {
  position: relative;
  display: block;
  width: 16px;
  height: 20px;
  border: 1.7px solid currentColor;
  border-radius: 3px;
}

.document-icon::before {
  position: absolute;
  top: 5px;
  left: 3px;
  width: 8px;
  height: 1.5px;
  border-radius: 99px;
  background: currentColor;
  box-shadow: 0 4px 0 currentColor, 0 8px 0 currentColor;
  content: "";
}

.refresh-icon {
  font-size: 24px;
}

.lock-icon::before {
  width: 13px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 3px;
  content: "";
}

.lock-icon::after {
  position: absolute;
  width: 8px;
  height: 8px;
  margin-top: -15px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  content: "";
}

.slide-copy h2 {
  margin: 1px 0 9px;
  color: #ffffff;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.slide-copy p,
.slide-copy li {
  color: #aebbd1;
  font-size: 12.5px;
  line-height: 1.6;
}

.slide-copy p {
  margin: 0;
}

.slide-copy p + p {
  margin-top: 8px;
}

.slide-copy ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 17px;
}

.slide-copy li::marker {
  color: #37c5ef;
}

.slide-copy strong {
  color: #eaf2ff;
  font-weight: 700;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 57px;
  margin: 0 24px;
  border-top: 1px solid rgba(169, 194, 230, 0.13);
}

.carousel-dots,
.arrow-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #53647f;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.dot.is-active {
  width: 23px;
  background: linear-gradient(90deg, #1887f6, #42d7f6);
}

.dot:focus-visible,
.arrow-button:focus-visible {
  outline: 2px solid #69d9ff;
  outline-offset: 3px;
}

.arrow-button {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  color: #dce9ff;
  border: 1px solid rgba(168, 196, 238, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.arrow-button:hover {
  border-color: rgba(76, 202, 255, 0.55);
  background: rgba(24, 146, 231, 0.18);
  transform: translateY(-1px);
}

.progress-track {
  position: absolute;
  bottom: 6px;
  left: 24px;
  width: 118px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(139, 188, 255, 0.14);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #1986f6, #49e5f5);
}

.carousel:not(.is-paused) .progress-track span {
  animation: slide-progress var(--slide-duration) linear forwards;
}

@keyframes slide-progress {
  to { width: 100%; }
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: auto 0 0;
  padding-top: 28px;
  color: #65748f;
  font-size: 11px;
}

.copyright,
.developer-credit {
  margin: 0;
  color: #65748f;
  font-size: 11px;
}

.footer-divider {
  width: 1px;
  height: 12px;
  background: rgba(139, 188, 255, 0.32);
}

.developer-credit a {
  color: #8bbcff;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.developer-credit a:hover,
.developer-credit a:focus-visible {
  color: #c5e2ff;
  text-decoration: underline;
}

.form-panel {
  display: grid;
  min-height: 100vh;
  padding: 48px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, #ffffff 0%, #fbfcff 43%, #f3f6fb 100%);
}

.form-column {
  width: min(100%, 515px);
}

.form-card {
  width: 100%;
  padding: 33px 38px 28px;
  border: 1px solid #dfe3ea;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 24px 70px rgba(27, 49, 87, 0.08);
}

.app-download {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  margin-top: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(156, 188, 232, 0.15);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
}

.app-download p {
  margin: 0;
  color: #91a3bf;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.click2sms-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 5px 9px;
  color: #a9bbd7;
  border: 1px solid rgba(139, 188, 255, 0.18);
  border-radius: 9px;
  background: rgba(17, 111, 210, 0.08);
  font-size: 10.5px;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.click2sms-link strong {
  color: #70d8ff;
  font-weight: 700;
}

.click2sms-link:hover,
.click2sms-link:focus-visible {
  color: #ffffff;
  border-color: rgba(92, 206, 255, 0.45);
  background: rgba(17, 126, 224, 0.17);
  outline: none;
}

.website-icon {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.website-icon::before {
  position: absolute;
  top: 5px;
  left: 1px;
  width: 10px;
  height: 2px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
}

.website-icon::after {
  position: absolute;
  top: 1px;
  left: 5px;
  width: 3px;
  height: 10px;
  border-right: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.link-arrow {
  color: #6dd7ff;
  font-size: 13px;
  transition: transform 180ms ease;
}

.click2sms-link:hover .link-arrow {
  transform: translateX(2px);
}

.store-badges {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.app-store-badge {
  display: block;
  width: auto;
  height: 40px;
}

.google-play-frame {
  display: flex;
  width: auto;
  height: 40px;
  align-items: center;
  overflow: visible;
}

.google-play-badge {
  display: block;
  width: auto;
  height: 58px;
}

.brand-logo {
  display: block;
  width: min(100%, 275px);
  height: 81px;
  margin: 0 auto 4px;
  object-fit: cover;
  object-position: 50% 51%;
}

.form-heading {
  text-align: center;
}

.form-heading h2 {
  margin: 6px 0 5px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.form-heading p {
  max-width: 330px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.divider {
  height: 1px;
  margin: 19px 0 22px;
  background: var(--line);
}

form > label,
.password-label-row label {
  display: block;
  color: #171b26;
  font-size: 13px;
  font-weight: 700;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  height: 43px;
  margin-top: 8px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid #d9dee7;
  border-radius: 10px;
  background: #ffffff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

#username {
  margin-bottom: 21px;
}

.captcha-label {
  margin-top: 21px;
}

input::placeholder {
  color: #8b91a0;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #2d7cf0;
  box-shadow: 0 0 0 3px rgba(45, 124, 240, 0.12);
}

.password-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.password-label-row a {
  color: #1e67e9;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.password-label-row a:hover {
  text-decoration: underline;
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 48px;
}

.show-password {
  position: absolute;
  right: 5px;
  bottom: 5px;
  display: grid;
  width: 35px;
  height: 33px;
  padding: 0;
  place-items: center;
  color: #536071;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
}

.show-password:hover,
.show-password:focus-visible {
  color: #155ed9;
  background: #eef4ff;
  outline: none;
}

.show-password.is-visible {
  color: #155ed9;
  background: #eef4ff;
}

.show-password.is-visible::after {
  position: absolute;
  width: 19px;
  height: 1.7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 1.4px #eef4ff;
  transform: rotate(42deg);
  content: "";
}

.eye-icon {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
}

.eye-icon::before {
  position: absolute;
  top: 3px;
  left: 2px;
  width: 11px;
  height: 11px;
  border: 1.7px solid currentColor;
  border-radius: 75% 0 75% 0;
  transform: rotate(45deg);
  content: "";
}

.eye-icon::after {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 17px 0 0;
  cursor: pointer;
}

.checkbox-row input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #2768ec;
}

.checkbox-row span {
  color: #20232b;
  font-size: 13px;
  font-weight: 600;
}

.form-message {
  min-height: 17px;
  margin: 8px 0 0;
  color: #c73737;
  font-size: 11.5px;
}

.form-message.is-success {
  color: #16834a;
}

.signin-button {
  width: 100%;
  height: 44px;
  color: white;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(95deg, #125ddf, #1e98f4);
  box-shadow: 0 9px 24px rgba(27, 110, 231, 0.2);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.signin-button:hover {
  box-shadow: 0 12px 28px rgba(27, 110, 231, 0.3);
  transform: translateY(-1px);
}

.signin-button:active {
  transform: translateY(0);
}

.security-note {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.security-note strong {
  color: #151923;
  font-size: 12.5px;
}

.security-note p {
  margin: 3px 0 0;
  color: #777d8b;
  font-size: 11.5px;
  line-height: 1.45;
}

.security-lock {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #6f7888;
  border: 1px solid #edf0f5;
  border-radius: 11px;
  background: #f3f5f8;
}

.lock-shape {
  position: relative;
  display: block;
  width: 14px;
  height: 11px;
  margin-top: 5px;
  border: 1.7px solid currentColor;
  border-radius: 3px;
}

.lock-shape::before {
  position: absolute;
  top: -9px;
  left: 2px;
  width: 7px;
  height: 8px;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  content: "";
}

.lock-shape::after {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 3px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

@media (max-width: 1120px) {
  .login-shell {
    grid-template-columns: 1fr 0.84fr;
  }

  .information-content {
    padding-inline: 42px;
  }

  .form-panel {
    padding: 28px;
  }

  .form-card {
    padding-inline: 28px;
  }
}

@media (min-width: 901px) and (max-height: 800px) {
  .information-content {
    padding-top: 30px;
    padding-bottom: 24px;
  }

  .title-block {
    margin-top: 20px;
  }

  .title-block h1 {
    max-width: 600px;
    margin-top: 7px;
    margin-bottom: 11px;
    font-size: clamp(36px, 3.5vw, 46px);
  }

  .intro-copy {
    line-height: 1.5;
  }

  .carousel {
    margin-top: 24px;
  }

  .carousel-topline {
    padding-top: 18px;
  }

  .slides-viewport {
    min-height: 236px;
  }

  .slide {
    padding-top: 17px;
  }

  .carousel-controls {
    min-height: 50px;
  }

  .site-footer {
    padding-top: 17px;
  }

  .form-panel {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .form-card {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .brand-logo {
    height: 69px;
  }

  .form-heading h2 {
    margin-top: 4px;
  }

  .divider {
    margin-top: 15px;
    margin-bottom: 18px;
  }

  input[type="text"],
  input[type="password"] {
    height: 41px;
  }

  #username {
    margin-bottom: 18px;
  }

  .checkbox-row {
    margin-top: 14px;
  }

  .security-note {
    margin-top: 18px;
    padding-top: 17px;
  }

  .app-download {
    margin-top: 10px;
    padding: 6px 8px;
  }

  .app-download p {
    font-size: 9px;
  }

  .app-store-badge {
    height: 34px;
  }

  .google-play-frame {
    width: auto;
    height: 34px;
  }

  .google-play-badge {
    height: 50px;
  }

  .click2sms-link {
    min-height: 28px;
  }
}

@media (max-width: 900px) {
  .login-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .information-panel {
    order: 2;
    display: block;
    min-height: auto;
  }

  .information-content {
    width: 100%;
    min-height: auto;
    padding: 42px 30px 34px;
  }

  .form-panel {
    order: 1;
    min-height: 100vh;
    padding: 42px 22px;
  }
}

@media (max-width: 540px) {
  .information-content {
    padding: 34px 18px 28px;
  }

  .title-block h1 {
    font-size: 34px;
  }

  .title-block h1 br {
    display: none;
  }

  .carousel {
    margin-top: 26px;
  }

  .slides-viewport {
    min-height: 405px;
  }

  .slide {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 12px;
    padding-inline: 19px;
  }

  .carousel-topline {
    padding-inline: 19px;
  }

  .carousel-controls {
    margin-inline: 19px;
  }

  .progress-track {
    left: 19px;
    width: 98px;
  }

  .slide-copy p,
  .slide-copy li {
    font-size: 12px;
  }

  .site-footer {
    flex-wrap: wrap;
    row-gap: 5px;
    padding-top: 24px;
  }

  .app-download {
    gap: 7px;
  }

  .form-panel {
    padding: 28px 14px;
  }

  .form-card {
    padding: 27px 20px 23px;
  }

  .brand-logo {
    width: 245px;
    height: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
