body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #171744;
  background: #fff;
}

.container {
  width: 86%;
  max-width: 1180px;
  margin: auto;
}

.top-header {
  height: 118px;
  background: #2f2f72;
  background-image:
    linear-gradient(120deg, transparent 48%, rgba(0,174,239,.25) 49%, transparent 50%),
    linear-gradient(40deg, transparent 48%, rgba(0,174,239,.18) 49%, transparent 50%);
  background-size: 220px 140px;
}

.header-content {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.logo img {
    width: 220px;
    max-height: 104px;
    object-fit: contain;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #139bd7;
}

.logo-icon {
  font-size: 38px;
}

.logo-small {
  font-size: 18px;
  color: #666;
}

.logo-main {
  font-size: 34px;
  font-weight: 700;
}

.logo-corfo {
  font-size: 15px;
  text-align: right;
}

.main-nav {
  background: #0d0b3c;
  height: 28px;
}

.nav-content {
  display: flex;
  justify-content: center;
  gap: 55px;
  height: 100%;
  align-items: center;
}

.nav-content a {
  color: white;
  text-decoration: none;
  font-size: 13px;
}

.nav-content a:first-child {
  color: #00aeef;
}

.hero {
  height: 380px;
  position: relative;
  background:
    linear-gradient(rgba(0,70,100,.15), rgba(0,70,100,.15)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  text-align: center;
}

.hero-text span {
  display: block;
  background: #00aeef;
  color: white;
  font-size: 34px;
  font-style: italic;
  padding: 8px 18px;
  margin: 5px 0;
}

.hero-arrow {
  position: absolute;
  top: 47%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 5px solid white;
  background: #15125c;
  color: white;
  font-size: 42px;
  line-height: 40px;
}

.hero-arrow.left {
  left: 120px;
}

.hero-arrow.right {
  right: 120px;
}

.dots {
  position: absolute;
  bottom: 22px;
}

.dots span {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  margin: 0 5px;
  opacity: .8;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-text {
  background: #211f82;
  color: white;
  padding: 70px 110px;
}

.about-text h2 {
  color: #00aeef;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 45px;
}

.about-image {
  background: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.line {
  width: 160px;
  height: 1px;
  background: white;
  opacity: .8;
}

.support {
  padding: 75px 8% 90px;
  text-align: center;
}

.support h2,
.regions h2,
.access h2 {
  color: #00aeef;
  font-size: 26px;
  margin-bottom: 60px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 55px;
  max-width: 1080px;
  margin: auto;
}

.icon-circle {
  width: 120px;
  height: 120px;
  margin: auto;
  border: 2px solid #00aeef;
  border-radius: 50%;
  font-size: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.support-card h3 {
  font-size: 17px;
  color: #171744;
}

.support-card p {
  font-size: 14px;
  line-height: 1.4;
}

.support-note {
  max-width: 980px;
  margin: 80px auto 0;
  color: #00aeef;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
}

.access {
  background: #0d0b3c;
  color: white;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  padding: 55px 20%;
  position: relative;
  overflow: hidden;
}

.access::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255,255,255,.4);
  transform: rotate(25deg);
}

.access-icon {
  font-size: 100px;
}

.access h2 {
  margin-bottom: 25px;
}

.access p {
  max-width: 430px;
  line-height: 1.7;
}

.regions {
  position: relative;
  padding: 70px 6% 90px;
  min-height: 460px;
  background: linear-gradient(#fff 0%, #e9f8ff 100%);
}

.map-shape {
  height: 160px;
  background: #00aeef;
  clip-path: polygon(0 40%, 10% 30%, 22% 50%, 35% 45%, 48% 55%, 65% 40%, 80% 55%, 100% 35%, 100% 65%, 0 75%);
  opacity: .9;
  margin-bottom: 35px;
}

.regions h2 {
  text-align: right;
  margin-top: -80px;
  margin-bottom: 95px;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 45px;
  color: #0088c5;
  font-size: 14px;
}

.regions-grid b {
  color: #0088c5;
}

.footer {
  background: #211f82;
  color: white;
  min-height: 85px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.footer span {
  margin-left: 32px;
}

@media (max-width: 900px) {
  .nav-content {
    gap: 18px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero-text span {
    font-size: 22px;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 300px;
  }

  .support-grid,
  .regions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .access {
    padding: 45px 8%;
    flex-direction: column;
  }
}

.scale-card-compact {
    top: 90px;
    border: 1px solid #dce6f2;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    font-size: 0.86rem;
    opacity: 0.94;
}

.scale-title {
    background: #eef3f8;
    color: #0d3b66;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 0.86rem;
    border-bottom: 1px solid #dce6f2;
}

.scale-item {
    display: flex;
    gap: 10px;
    padding: 9px 12px;
    border-bottom: 1px solid #edf2f7;
    align-items: flex-start;
}

.scale-item:last-child {
    border-bottom: none;
}

.scale-percent {
    min-width: 42px;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 3px 7px;
    border-radius: 999px;
    text-align: center;
    background: rgba(255,255,255,0.7);
}

.scale-item b {
    display: block;
    font-size: 0.84rem;
    line-height: 1.2;
    color: #1f2937;
}

.scale-item small {
    display: block;
    font-size: 0.76rem;
    line-height: 1.25;
    color: #5f6b7a;
    margin-top: 2px;
}

.scale-0 { background: #fff5f5; }
.scale-25 { background: #fff9ec; }
.scale-50 { background: #f1f8ff; }
.scale-75 { background: #f6f3ff; }
.scale-100 { background: #f4fbf1; }

@media (max-width: 900px) {
  .nav-content {
    gap: 18px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero-text span {
    font-size: 22px;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 300px;
  }

  .support-grid,
  .regions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .access {
    padding: 45px 8%;
    flex-direction: column;
  }
}
.result-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
}

.result-box span {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.result-box strong {
    display: block;
    color: #0d3b66;
    font-size: 2rem;
    font-weight: 800;
}

.dashboard-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    min-height: 160px;
}

.dashboard-card span {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.dashboard-card strong {
    display: block;
    color: #0d3b66;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
}

.dashboard-small-text {
    font-size: 1.3rem !important;
}

.dashboard-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.dashboard-history-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
}

.dashboard-history-item:last-child {
    border-bottom: none;
}

.dashboard-history-item strong {
    display: block;
    color: #0d3b66;
}

.dashboard-history-item span {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
}

.dashboard-history-item small {
    color: #64748b;
    white-space: nowrap;
}
.admin-body {
    background: #f5f7fb;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: #2f2f72;
    color: white;
    padding: 24px 18px;
}

.admin-brand {
    display: flex;
    min-height: 94px;
    padding: 0;
    margin-bottom: 32px;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.admin-brand img {
    display: block;
    width: 220px;
    max-width: 100%;
    max-height: 92px;
    object-fit: contain;
}

.admin-menu a {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #dbeafe;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 6px;
}

.admin-menu a:hover {
    background: rgba(255,255,255,0.12);
    color: white;
}

.admin-main {
    flex: 1;
    padding: 24px 32px;
}

.admin-topbar {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-metric-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 20px;
    min-height: 145px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.admin-metric-card span {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.admin-metric-card strong {
    display: block;
    color: #0d3b66;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
}

.admin-metric-card small {
    display: block;
    color: #94a3b8;
    margin-top: 8px;
}
.admin-user-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.admin-user-info {
    line-height: 1.1;
}

.admin-user-info strong {
    display: block;
    font-size: 0.9rem;
    color: #0f172a;
}

.admin-user-info span {
    display: block;
    font-size: 0.78rem;
    color: #64748b;
    text-transform: capitalize;
}
.admin-welcome-card {
    background: linear-gradient(135deg, #ffffff, #eef6ff);
    border: 1px solid #dbeafe;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.admin-date {
    color: #0d3b66;
    font-weight: 700;
    background: white;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    padding: 8px 16px;
}

.admin-metric-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #eef6ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.quick-action-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none;
    color: #0f172a;
    background: #ffffff;
    transition: all 0.2s ease;
}

.quick-action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    border-color: #0d6efd;
    color: #0d6efd;
}

.quick-action-card i {
    font-size: 1.5rem;
}

.quick-action-card span {
    font-weight: 700;
}

.dashboard-filtros-sticky {
    position: sticky;
    top: 12px;
    z-index: 1020;
}

@media (max-width: 768px) {
    .dashboard-filtros-sticky {
        position: static;
    }
}

/* Acceso de empresas integrado con Impulso Digital Ñuble */
.impulso-login-page {
  min-height: 100vh;
  color: #242848;
  background: #25255d;
}

.impulso-login-page .container {
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px;
}

.impulso-login-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
}

.impulso-login-header__inner {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.impulso-login-brand img {
  display: block;
  width: 220px;
  max-height: 92px;
  object-fit: contain;
}

.impulso-back-link {
  display: inline-flex;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s, background .2s, transform .2s;
}

.impulso-back-link:hover {
  color: #2f2f72;
  background: #fff;
  transform: translateY(-2px);
}

.impulso-login {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background: #2f2f72;
}

.impulso-login__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 38, 95, .98) 0%, rgba(38, 38, 95, .92) 42%, rgba(38, 38, 95, .62) 100%),
    url('../img/impulso/hero.avif') center / cover no-repeat;
}

.impulso-login__content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 760px;
  padding-top: 135px;
  padding-bottom: 60px;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: 90px;
}

.impulso-eyebrow {
  margin: 0 0 16px;
  color: #27dce8;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.impulso-eyebrow--dark { color: #2f2f72; }

.impulso-login__intro h1 {
  max-width: 650px;
  margin: 0 0 24px;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.impulso-login__intro > p:not(.impulso-eyebrow) {
  max-width: 600px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.12rem;
  line-height: 1.65;
}

.impulso-login__intro > img {
  display: block;
  width: min(470px, 90%);
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.impulso-login__card {
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 26px;
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 28px 80px rgba(15, 16, 55, .34);
  backdrop-filter: blur(8px);
}

.impulso-login__card-inner {
  padding: 43px 40px 40px;
  border-radius: 19px;
  color: #242848;
  background: #fff;
}

.impulso-login__card h2 {
  margin: 0 0 10px;
  color: #242848;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -.025em;
}

.impulso-login__help {
  margin-bottom: 30px;
  color: #6b6f82;
  font-size: .96rem;
}

.impulso-login__card .form-label {
  margin-bottom: 8px;
  color: #3b3e59;
  font-size: .88rem;
  font-weight: 700;
}

.impulso-login__card .form-control {
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid #d9dbe5;
  border-radius: 11px;
  color: #242848;
  background: #f8f9fc;
}

.impulso-login__card .form-control:focus {
  border-color: #2f2f72;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47, 47, 114, .12);
}

.impulso-login__submit {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: #25255d;
  background: #27dce8;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}

.impulso-login__submit:hover {
  color: #25255d;
  background: #27dce8;
  box-shadow: 0 10px 25px rgba(39, 220, 232, .28);
  transform: translateY(-2px);
}

.impulso-login-footer {
  padding: 68px 0 24px;
  color: #fff;
  background: #17183f;
}

.impulso-login-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
}

.impulso-login-footer__logo { width: 170px; margin-bottom: 20px; }
.impulso-login-footer p { max-width: 480px; color: rgba(255, 255, 255, .58); font-size: .94rem; line-height: 1.6; }
.impulso-login-footer__contact { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }
.impulso-login-footer__contact > a { color: #fff; text-decoration: none; }
.impulso-login-socials { display: flex; gap: 9px; margin-top: 10px; }
.impulso-login-socials a { display: grid; width: 38px; height: 38px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; place-items: center; }
.impulso-login-socials img { width: 18px; height: 18px; object-fit: contain; filter: brightness(0) invert(1); }
.impulso-login-footer__bottom { display: flex; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .13); justify-content: space-between; gap: 20px; color: rgba(255, 255, 255, .43); font-size: .78rem; }

@media (max-width: 900px) {
  .impulso-login__content { grid-template-columns: 1fr; gap: 48px; }
  .impulso-login__intro { padding-top: 40px; }
  .impulso-login__card { width: min(100%, 560px); margin-inline: auto; }
}

@media (max-width: 600px) {
  .impulso-login-page .container { width: min(100% - 32px, 1180px); }
  .impulso-login-header__inner { min-height: 88px; }
  .impulso-login-brand img { width: 175px; max-height: 78px; }
  .impulso-back-link { min-height: 41px; padding: 0 14px; font-size: .82rem; }
  .impulso-login__backdrop { background: linear-gradient(rgba(38, 38, 95, .87), rgba(38, 38, 95, .98)), url('../img/impulso/hero.avif') 68% center / cover no-repeat; }
  .impulso-login__content { padding-top: 112px; padding-bottom: 48px; gap: 38px; }
  .impulso-login__intro h1 { font-size: 2.8rem; }
  .impulso-login__intro > p:not(.impulso-eyebrow) { margin-bottom: 27px; font-size: 1rem; }
  .impulso-login__card-inner { padding: 32px 24px 27px; }
  .impulso-login-footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .impulso-login-footer__bottom { align-items: flex-start; flex-direction: column; }
}

/* Acceso administrativo homologado */
.admin-access-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  color: #242848;
  background: #f3f4f9;
}

.admin-access-page .container {
  width: min(1120px, calc(100% - 48px));
  max-width: 1120px;
}

.admin-access-header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  background: #25255d;
}

.admin-access-header__inner {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.admin-access-brand img {
  display: block;
  width: 220px;
  max-height: 92px;
  object-fit: contain;
}

.admin-access-header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.admin-access-header__actions > span {
  color: rgba(255, 255, 255, .55);
  font-size: .82rem;
  letter-spacing: .04em;
}

.admin-access-header__actions > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}

.admin-access-header__actions > a:hover { color: #27dce8; }

.admin-access {
  position: relative;
  display: grid;
  min-height: 650px;
  flex: 1;
  overflow: hidden;
  place-items: center;
  padding: 70px 0;
  background: linear-gradient(145deg, #f7f8fc 0%, #eceef6 100%);
}

.admin-access__pattern {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(47, 47, 114, .08);
  border-radius: 48%;
  box-shadow: 0 0 0 75px rgba(47, 47, 114, .025), 0 0 0 150px rgba(47, 47, 114, .018);
}

.admin-access__shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.admin-access__card {
  width: min(100%, 470px);
  padding: 43px 42px 40px;
  border: 1px solid rgba(47, 47, 114, .1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(38, 38, 80, .12);
}

.admin-access__identity {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 20px;
}

.admin-access__icon {
  display: grid;
  width: 55px;
  height: 55px;
  flex: 0 0 55px;
  border-radius: 16px;
  place-items: center;
  color: #25255d;
  background: #27dce8;
  font-size: 1.45rem;
}

.admin-access__eyebrow {
  margin: 0 0 4px;
  color: #2f2f72;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.admin-access__card h1 {
  margin: 0;
  color: #242848;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -.025em;
}

.admin-access__help {
  margin-bottom: 29px;
  color: #6b6f82;
  font-size: .94rem;
  line-height: 1.6;
}

.admin-access__card .form-label {
  margin-bottom: 8px;
  color: #3b3e59;
  font-size: .87rem;
  font-weight: 700;
}

.admin-access__card .form-control {
  min-height: 51px;
  padding: 12px 15px;
  border: 1px solid #d9dbe5;
  border-radius: 11px;
  color: #242848;
  background: #f8f9fc;
}

.admin-access__card .form-control:focus {
  border-color: #2f2f72;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47, 47, 114, .11);
}

.admin-access__submit {
  min-height: 51px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #2f2f72;
  font-weight: 700;
  transition: background .2s, transform .2s, box-shadow .2s;
}

.admin-access__submit:hover {
  color: #25255d;
  background: #27dce8;
  box-shadow: 0 10px 24px rgba(47, 47, 114, .18);
  transform: translateY(-2px);
}

.admin-access__notice {
  margin: 22px 0 0;
  color: #7a7d90;
  font-size: .8rem;
}

.admin-access__notice i { margin-right: 5px; color: #2f2f72; }

.admin-access-footer {
  padding: 20px 0;
  color: rgba(255, 255, 255, .48);
  background: #17183f;
  font-size: .76rem;
}

.admin-access-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 600px) {
  .admin-access-page .container { width: min(100% - 32px, 1120px); }
  .admin-access-header__inner { min-height: 88px; }
  .admin-access-brand img { width: 175px; max-height: 78px; }
  .admin-access-header__actions > span { display: none; }
  .admin-access-header__actions > a { font-size: .8rem; }
  .admin-access { padding: 45px 0; }
  .admin-access__card { padding: 32px 24px 28px; }
  .admin-access__identity { align-items: flex-start; }
  .admin-access__card h1 { font-size: 1.5rem; }
  .admin-access-footer .container { align-items: flex-start; flex-direction: column; gap: 5px; }
}
.ccv-option {
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.ccv-option:hover {
    transform: translateY(-1px);
    box-shadow: 0 .25rem .75rem rgba(15, 23, 42, .08);
}

.btn-check:checked + .ccv-option {
    border-color: currentColor !important;
    box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .18);
    transform: translateY(-1px);
}
