.sso-login-card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.sso-login-button {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.sso-login-body {
  min-height: 100vh;
  margin: 0;
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #f4f7fb;
  color: #111827;
}
.sso-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.sso-login-title {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}
.sso-login-text {
  margin: 0 0 24px;
  color: #4b5563;
}
.sso-login-classic {
  margin-top: 18px;
  font-size: 14px;
}
.sso-btn {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.sso-btn:hover {
  text-decoration: none;
}
.sso-brand-login-body {
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  background-color: var(--sso-login-background-color, #062a44);
  background-image: var(--sso-login-background-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.sso-brand-login-body * {
  box-sizing: border-box;
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.sso-brand-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.sso-brand-login-box {
  width: 100%;
  max-width: 420px;
  text-align: center;
  transform: translateY(var(--sso-login-box-offset, -24px));
}
.sso-brand-login-logo {
  display: block;
  width: var(--sso-login-logo-width, 260px);
  max-width: 80%;
  height: auto;
  margin: 0 auto var(--sso-login-logo-margin-bottom, 82px);
}
.sso-brand-login-title {
  margin: 0 0 var(--sso-login-title-margin-bottom, 54px);
  font-size: var(--sso-login-title-size, 42px);
  line-height: 1.15;
  color: #fff;
}
.sso-brand-login-classic {
  margin-top: 22px;
  font-size: 14px;
}
.sso-brand-login-classic a {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 640px) {
  .sso-brand-login-box {
    max-width: 340px;
    transform: translateY(-10px);
  }
  .sso-brand-login-logo {
    width: var(--sso-login-logo-width-mobile, 210px);
    margin-bottom: var(--sso-login-logo-margin-bottom-mobile, 58px);
  }
  .sso-brand-login-title {
    font-size: var(--sso-login-title-size-mobile, 34px);
    margin-bottom: var(--sso-login-title-margin-bottom-mobile, 42px);
  }
}

.sso-login-progress-text {
  margin: 0 0 1rem;
}

.sso-login-progress-loader {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1rem;
  border: 0.25rem solid rgba(14, 165, 233, 0.25);
  border-top-color: #0ea5e9;
  border-radius: 50%;
  animation: sso-login-spinner 0.8s linear infinite;
}

@keyframes sso-login-spinner {
  to {
    transform: rotate(360deg);
  }
}
