.sl-auth-page {
  background: var(--sl-bg);
  color: var(--sl-gray-900);
  min-height: 100vh;
  padding: 1.25rem;
}

.sl-auth-shell {
  background: #fff;
  border: 1px solid var(--sl-border);
  border-radius: 1rem;
  box-shadow: 0 22px 70px rgba(28, 28, 26, .08);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, .95fr);
  margin: 0 auto;
  max-width: 75rem;
  min-height: calc(100vh - 2.5rem);
  overflow: hidden;
}

.sl-auth-shell-register {
  max-width: 80rem;
}

.sl-auth-form-pane {
  display: flex;
  flex-direction: column;
  padding: 3rem;
}

.sl-auth-brand {
  align-items: center;
  display: inline-flex;
  margin-bottom: auto;
  width: fit-content;
}

.sl-auth-brand img {
  height: 3.75rem;
  max-width: 14rem;
  object-fit: contain;
}

.sl-auth-copy {
  margin: 4rem 0 1.875rem;
  max-width: 28rem;
}

.sl-auth-copy h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 .75rem;
}

.sl-auth-copy p {
  color: var(--sl-gray-500);
  font-size: .9875rem;
  line-height: 1.6;
  margin: 0;
}

.sl-auth-form {
  max-width: 28rem;
  width: 100%;
}

.sl-auth-field {
  display: grid;
  gap: .5rem;
  margin-bottom: 1.125rem;
}

.sl-auth-field > span:first-child {
  color: var(--sl-gray-900);
  font-size: .875rem;
  font-weight: 700;
}

.sl-auth-input {
  align-items: center;
  background: #fff;
  border: 1.5px solid #DCDAD2;
  border-radius: .5rem;
  display: flex;
  gap: .75rem;
  min-height: 3rem;
  padding: 0 .875rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.sl-auth-input:focus-within {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 .2rem rgba(45, 43, 143, .1);
}

.sl-auth-input i {
  color: var(--sl-gray-500);
  flex: 0 0 auto;
  font-size: 1rem;
}

.sl-auth-input input {
  border: 0;
  color: var(--sl-gray-900);
  flex: 1 1 auto;
  font: 500 .9375rem/1.3 Inter, system-ui, sans-serif;
  min-width: 0;
  outline: 0;
}

.sl-auth-input input::placeholder {
  color: #989892;
}

.sl-auth-grid {
  display: grid;
  gap: .875rem;
  grid-template-columns: 1fr 1fr;
}

.sl-auth-row,
.sl-auth-check,
.sl-auth-switch {
  align-items: center;
  display: flex;
  font-size: .875rem;
}

.sl-auth-row {
  justify-content: space-between;
  margin: .25rem 0 1.625rem;
}

.sl-auth-row a,
.sl-auth-check a,
.sl-auth-switch a {
  color: var(--bs-primary);
  font-weight: 700;
  text-decoration: none;
}

.sl-auth-check {
  color: var(--sl-gray-700);
  gap: .625rem;
}

.sl-auth-check input {
  accent-color: var(--bs-primary);
  height: 1rem;
  width: 1rem;
}

.sl-auth-terms {
  align-items: flex-start;
  line-height: 1.45;
  margin: .25rem 0 1.5rem;
}

.sl-auth-submit {
  align-items: center;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 800;
  gap: .5rem;
  justify-content: center;
  min-height: 3.25rem;
  width: 100%;
}

.sl-auth-divider {
  align-items: center;
  color: var(--sl-gray-500);
  display: flex;
  font-size: .8125rem;
  gap: 1rem;
  margin: 1.5rem 0;
}

.sl-auth-divider::before,
.sl-auth-divider::after {
  background: var(--sl-border);
  content: "";
  flex: 1;
  height: 1px;
}

.sl-auth-switch {
  color: var(--sl-gray-500);
  gap: .5rem;
  justify-content: center;
  margin-top: .25rem;
}

.sl-auth-footer {
  align-items: center;
  color: var(--sl-gray-500);
  display: flex;
  flex-wrap: wrap;
  gap: .875rem 1.25rem;
  margin-top: auto;
  padding-top: 3rem;
  font-size: .8125rem;
}

.sl-auth-footer a {
  color: var(--bs-primary);
  text-decoration: none;
}

.sl-auth-product-pane {
  background:
    radial-gradient(circle at 85% 18%, rgba(58, 191, 160, .14), transparent 26rem),
    linear-gradient(135deg, #FBFBF9 0%, #F4F3FD 100%);
  border-left: 1px solid var(--sl-border);
  display: flex;
  padding: 3rem;
}

.sl-auth-product-content {
  align-self: center;
  width: 100%;
}

.sl-auth-product-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.18;
  margin: 0 0 .875rem;
  max-width: 28rem;
}

.sl-auth-product-content > p {
  color: var(--sl-gray-700);
  font-size: .9875rem;
  line-height: 1.65;
  margin: 0 0 1.875rem;
  max-width: 30rem;
}

.sl-auth-preview-card,
.sl-auth-chart-card {
  background: #fff;
  border: 1px solid var(--sl-border);
  border-radius: .875rem;
  box-shadow: 0 14px 38px rgba(28, 28, 26, .08);
  margin-bottom: .875rem;
  padding: 1.125rem;
}

.sl-auth-preview-head,
.sl-auth-course,
.sl-auth-stat-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.sl-auth-preview-head {
  font-size: .875rem;
  margin-bottom: 1rem;
}

.sl-auth-preview-head a,
.sl-auth-preview-head span {
  color: var(--bs-primary);
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none;
}

.sl-auth-progress {
  align-items: center;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 8rem 1fr;
}

.sl-auth-ring {
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle closest-side, #fff 71%, transparent 72%),
    conic-gradient(var(--bs-success) 72%, var(--sl-border) 0);
  border-radius: 50%;
  display: flex;
  font-size: 1.75rem;
  font-weight: 800;
  justify-content: center;
}

.sl-auth-metrics {
  display: grid;
  gap: .625rem;
}

.sl-auth-metrics div {
  display: grid;
  gap: .0625rem;
}

.sl-auth-metrics b {
  font-size: 1.125rem;
}

.sl-auth-metrics span,
.sl-auth-course,
.sl-auth-stat-row span {
  color: var(--sl-gray-500);
  font-size: .8125rem;
}

.sl-auth-course {
  color: var(--sl-gray-900);
  font-weight: 700;
  gap: .75rem;
  margin: .875rem 0 .5rem;
}

.sl-auth-course:first-child {
  margin-top: 0;
}

.sl-auth-course span {
  align-items: center;
  color: var(--sl-gray-900);
  display: flex;
  gap: .5rem;
}

.sl-auth-benefits,
.sl-auth-feature-list {
  display: grid;
  gap: .875rem;
  margin-top: 1.5rem;
}

.sl-auth-benefits div,
.sl-auth-feature-list div {
  align-items: center;
  display: grid;
  gap: .875rem;
  grid-template-columns: 2.5rem 1fr;
}

.sl-auth-benefits i,
.sl-auth-feature-list i {
  align-items: center;
  background: #fff;
  border: 1px solid var(--sl-border);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(28, 28, 26, .06);
  color: var(--bs-success);
  display: flex;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}

.sl-auth-benefits span,
.sl-auth-feature-list span {
  color: var(--sl-gray-700);
  font-size: .9375rem;
  line-height: 1.45;
}

.sl-auth-chart {
  border-bottom: 1px solid var(--sl-border);
  margin-bottom: 1rem;
  padding: .25rem 0 .875rem;
}

.sl-auth-chart svg {
  display: block;
  height: auto;
  width: 100%;
}

.sl-auth-stat-row {
  gap: .75rem;
}

.sl-auth-stat-row div {
  border: 1px solid var(--sl-border);
  border-radius: .625rem;
  flex: 1;
  padding: .875rem;
  text-align: center;
}

.sl-auth-stat-row b {
  color: var(--bs-success);
  display: block;
  font-size: 1.375rem;
  margin-top: .25rem;
}

@media (max-width: 991.98px) {
  .sl-auth-page {
    padding: 0;
  }

  .sl-auth-shell,
  .sl-auth-shell-register {
    border: 0;
    border-radius: 0;
    grid-template-columns: 1fr;
    max-width: none;
    min-height: 100vh;
  }

  .sl-auth-form-pane,
  .sl-auth-product-pane {
    padding: 2rem 1.25rem;
  }

  .sl-auth-brand {
    margin-bottom: 0;
  }

  .sl-auth-copy {
    margin: 2.75rem 0 1.5rem;
  }

  .sl-auth-product-pane {
    border-left: 0;
    border-top: 1px solid var(--sl-border);
  }
}

@media (max-width: 575.98px) {
  .sl-auth-grid,
  .sl-auth-progress {
    grid-template-columns: 1fr;
  }

  .sl-auth-ring {
    max-width: 8rem;
  }

  .sl-auth-row {
    align-items: flex-start;
    flex-direction: column;
    gap: .875rem;
  }
}
