@charset "UTF-8";
/*! AuroraNetworks SSO – kompiliert aus scss/sso.scss – nicht manuell bearbeiten */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");
:root {
  --bg: #07070d;
  --surface: #0e0f1a;
  --surface-2: #12131f;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(90, 150, 255, 0.45);
  --accent: #5a96ff;
  --accent-2: #7ab4ff;
  --accent-dim: rgba(90, 150, 255, 0.18);
  --success: #4ade80;
  --danger: #f87171;
  --text: #e8eaf0;
  --text-2: #7c8fa8;
  --text-3: #4a5568;
  --font: Inter, system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --speed: 0.22s;
  --speed-slow: 0.5s;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  *:not(.btn-spinner) {
    transition-duration: 0.01ms !important;
  }
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #e8eaf0;
  background-color: #07070d;
  min-height: 100vh;
  background-image: radial-gradient(ellipse 80% 60% at 20% -10%, rgba(90, 150, 255, 0.22), transparent), radial-gradient(ellipse 60% 50% at 80% 110%, rgba(74, 222, 128, 0.08), transparent), radial-gradient(ellipse 50% 40% at 50% 50%, rgba(90, 60, 200, 0.06), transparent);
}

a {
  color: #7ab4ff;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #fff;
}

@keyframes sso-slide-in-left {
  from {
    opacity: 0;
    transform: translate3d(-24px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes sso-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes sso-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes sso-scale-in {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes sso-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes sso-aurora-shift {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}
.sso-shell {
  width: min(1140px, 100% - 40px);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
}
@media (max-width: 900px) {
  .sso-shell {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }
}
@media (max-width: 400px) {
  .sso-shell {
    width: calc(100% - 24px);
  }
}

.sso-choose-page {
  min-height: 100vh;
  background: radial-gradient(ellipse 70% 50% at 15% -5%, rgba(90, 150, 255, 0.2), transparent), radial-gradient(ellipse 60% 50% at 85% 110%, rgba(74, 222, 128, 0.07), transparent), #07070d;
}
@media (prefers-reduced-motion: no-preference) {
  html.js-motion-ready .sso-choose-page {
    animation: sso-aurora-shift 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }
}

.sso-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 900px) {
  .sso-brand {
    align-items: center;
    text-align: center;
  }
}

.sso-logo-wrap {
  display: block;
  width: max-content;
  max-width: 100%;
  line-height: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(14, 15, 26, 0.85);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 20px 56px rgba(90, 150, 255, 0.2), 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 1;
  transform: none;
  animation: none;
}
@media (prefers-reduced-motion: no-preference) {
  html.js-motion-ready .sso-logo-wrap {
    opacity: 0;
    animation: sso-slide-in-left 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
  }
}
.sso-logo-wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(90, 150, 255, 0.22), 0 28px 72px rgba(90, 150, 255, 0.28), 0 10px 28px rgba(0, 0, 0, 0.5);
}

.sso-logo {
  display: block;
  height: clamp(88px, 14vw, 120px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.sso-brand-tagline {
  font-size: 1.15rem;
  font-weight: 500;
  color: #7c8fa8;
  line-height: 1.55;
  max-width: 400px;
  opacity: 1;
  transform: none;
  animation: none;
}
@media (prefers-reduced-motion: no-preference) {
  html.js-motion-ready .sso-brand-tagline {
    opacity: 0;
    animation: sso-fade-up 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
  }
}
@media (max-width: 900px) {
  .sso-brand-tagline {
    max-width: 100%;
  }
}

.sso-brand-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 900px) {
  .sso-brand-features {
    display: none;
  }
}

.sso-brand-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: #7c8fa8;
  opacity: 1;
  animation: none;
}
@media (prefers-reduced-motion: no-preference) {
  html.js-motion-ready .sso-brand-feature:nth-child(1) {
    opacity: 0;
    animation: sso-fade-up 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.18s forwards;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.js-motion-ready .sso-brand-feature:nth-child(2) {
    opacity: 0;
    animation: sso-fade-up 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.js-motion-ready .sso-brand-feature:nth-child(3) {
    opacity: 0;
    animation: sso-fade-up 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.32s forwards;
  }
}
.sso-brand-feature i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(90, 150, 255, 0.18);
  color: #7ab4ff;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.sso-card {
  position: relative;
  width: 100%;
  padding: 40px 40px 36px;
  border-radius: 28px;
  backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(14, 15, 26, 0.95) 0%, rgba(10, 10, 18, 0.96) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 32px 80px rgba(0, 0, 0, 0.55), 0 8px 24px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transform: none;
  animation: none;
}
@media (prefers-reduced-motion: no-preference) {
  html.js-motion-ready .sso-card {
    opacity: 0;
    animation: sso-fade-up 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.16s forwards;
  }
}
.sso-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(90, 150, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
@media (max-width: 640px) {
  .sso-card {
    padding: 28px 22px 24px;
    border-radius: 22px;
  }
  .sso-card::before {
    border-radius: 22px;
  }
}

.sso-card__header {
  margin-bottom: 28px;
}
.sso-card__header--center {
  text-align: center;
}

.sso-card h1 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 10px 0 8px;
  background: linear-gradient(135deg, #fff 40%, rgba(90, 150, 255, 0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sso-card p {
  color: #7c8fa8;
  font-size: 0.92rem;
  line-height: 1.6;
}

.sso-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border: 1px solid rgba(90, 150, 255, 0.18);
  border-radius: 999px;
  color: #7ab4ff;
  background: rgba(90, 150, 255, 0.07);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.flash {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  margin-bottom: 20px;
  border-radius: 14px;
  border: 1px solid;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 1;
  transform: none;
  animation: none;
}
@media (prefers-reduced-motion: no-preference) {
  html.js-motion-ready .flash {
    opacity: 0;
    animation: sso-fade-in 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.05s forwards;
  }
}
.flash--success {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border-color: rgba(74, 222, 128, 0.25);
}
.flash--error {
  color: #f87171;
  background: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.25);
}
.flash--info {
  color: #7ab4ff;
  background: rgba(90, 150, 255, 0.18);
  border-color: rgba(90, 150, 255, 0.25);
}

.info-box {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(90, 150, 255, 0.2);
  background: rgba(90, 150, 255, 0.18);
  font-size: 0.85rem;
  color: #7c8fa8;
}
.info-box i {
  color: #7ab4ff;
  margin-top: 2px;
  flex-shrink: 0;
}

.sso-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: #4a5568;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sso-divider::before, .sso-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.sso-links {
  margin-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: #7c8fa8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.sso-links a {
  font-weight: 600;
}
.sso-links .sep {
  color: #4a5568;
}

.sso-alt-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.sso-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sso-form--compact {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.sso-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sso-form .field-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #7c8fa8;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
.sso-form input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #e8eaf0;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.sso-form input::placeholder {
  color: #4a5568;
}
.sso-form input:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}
.sso-form input:focus {
  border-color: #5a96ff;
  background: rgba(90, 150, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(90, 150, 255, 0.15);
}
.sso-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #e8eaf0;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.sso-form select:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}
.sso-form select:focus {
  border-color: #5a96ff;
  background: rgba(90, 150, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(90, 150, 255, 0.15);
}

.pw-strength {
  height: 3px;
  border-radius: 99px;
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.pw-strength__bar {
  height: 100%;
  border-radius: 99px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}

.code-input-row {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.code-input-row input[type=text] {
  width: 48px;
  height: 56px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  padding: 0;
  border-radius: 14px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: none;
  border-radius: 14px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: #e8eaf0;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:active {
  transform: scale(0.97);
}
.btn--primary {
  background: linear-gradient(135deg, #5a96ff 0%, #7ab4ff 100%);
  box-shadow: 0 8px 28px rgba(90, 150, 255, 0.35), 0 2px 8px rgba(90, 150, 255, 0.2);
  color: #fff;
}
.btn--primary:hover {
  box-shadow: 0 12px 40px rgba(90, 150, 255, 0.5), 0 4px 12px rgba(90, 150, 255, 0.3);
  transform: translateY(-1px);
}
.btn--primary:active {
  transform: scale(0.97);
}
.btn--steam {
  background: linear-gradient(135deg, #1b2135 0%, #0e1525 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #c7d5e0;
}
.btn--steam:hover {
  background: linear-gradient(135deg, #22293e 0%, #131b2e 100%);
  color: #fff;
  border-color: rgba(199, 213, 224, 0.2);
  transform: translateY(-1px);
}
.btn--steam .fa-steam {
  font-size: 1.1em;
  color: #b5c9de;
}
.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  color: #7c8fa8;
}
.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #e8eaf0;
  transform: translateY(-1px);
}
.btn--danger {
  border: 1px solid rgba(248, 113, 113, 0.25);
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
}
.btn--danger:hover {
  background: rgba(248, 113, 113, 0.2);
  transform: translateY(-1px);
}
.btn--loading {
  pointer-events: none;
  opacity: 0.88;
}
.btn--loading .btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: sso-spin 0.7s linear infinite;
}

.choose-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 640px) {
  .choose-wrapper {
    padding: 40px 16px;
  }
}

.choose-logo-wrap {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  line-height: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(14, 15, 26, 0.85);
  box-shadow: 0 20px 60px rgba(90, 150, 255, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: none;
  animation: none;
}
@media (prefers-reduced-motion: no-preference) {
  html.js-motion-ready .choose-logo-wrap {
    opacity: 0;
    animation: sso-scale-in 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
  }
}
.choose-logo-wrap:hover {
  transform: translateY(-2px);
}

.choose-logo {
  display: block;
  height: 96px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.choose-header {
  text-align: center;
  opacity: 1;
  transform: none;
  animation: none;
}
@media (prefers-reduced-motion: no-preference) {
  html.js-motion-ready .choose-header {
    opacity: 0;
    animation: sso-fade-up 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.12s forwards;
  }
}
.choose-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.1;
  margin: 12px 0 10px;
  background: linear-gradient(135deg, #fff 40%, rgba(90, 150, 255, 0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.choose-header p {
  color: #7c8fa8;
  font-size: 1rem;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 700px;
}
@media (max-width: 640px) {
  .destination-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}

.destination-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  border-radius: 22px;
  color: #e8eaf0;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(14, 15, 26, 0.95) 0%, rgba(10, 10, 18, 0.96) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 32px 80px rgba(0, 0, 0, 0.55), 0 8px 24px rgba(0, 0, 0, 0.3);
}
@media (prefers-reduced-motion: no-preference) {
  html.js-motion-ready .destination-card:not(.destination-card--disabled):nth-child(1) {
    opacity: 0;
    animation: sso-fade-up 0.48s cubic-bezier(0.4, 0, 0.2, 1) 0.22s forwards;
  }
  html.js-motion-ready .destination-card:not(.destination-card--disabled):nth-child(2) {
    opacity: 0;
    animation: sso-fade-up 0.48s cubic-bezier(0.4, 0, 0.2, 1) 0.31s forwards;
  }
  html.js-motion-ready .destination-card:not(.destination-card--disabled):nth-child(3) {
    opacity: 0;
    animation: sso-fade-up 0.48s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
  }
}
.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90, 150, 255, 0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: inherit;
  pointer-events: none;
}
.destination-card:hover {
  transform: translateY(-5px);
  border-color: rgba(90, 150, 255, 0.45);
  box-shadow: 0 20px 56px rgba(90, 150, 255, 0.18), 0 4px 16px rgba(0, 0, 0, 0.4);
}
.destination-card:hover::before {
  opacity: 1;
}
.destination-card:hover .destination-card__icon-wrap {
  background: rgba(90, 150, 255, 0.26);
  transform: scale(1.08) rotate(-3deg);
}
.destination-card:hover .destination-card__arrow {
  opacity: 1;
  transform: translateX(0);
}
.destination-card--disabled {
  opacity: 0.65;
  cursor: default;
  pointer-events: none;
  animation: none !important;
  opacity: 0.65 !important;
  transform: none !important;
}
.destination-card--disabled:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.07);
}
.destination-card--steam-needed .destination-card__icon-wrap {
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
}
.destination-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  background: rgba(90, 150, 255, 0.18);
  color: #7ab4ff;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.destination-card h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #e8eaf0;
}
.destination-card p {
  font-size: 0.82rem;
  color: #7c8fa8;
  flex: 1;
}
.destination-card__arrow {
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #7ab4ff;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.choose-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: #7c8fa8;
  opacity: 1;
  transform: none;
  animation: none;
}
@media (prefers-reduced-motion: no-preference) {
  html.js-motion-ready .choose-actions {
    opacity: 0;
    animation: sso-fade-in 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
  }
}

.sso-panel-body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(ellipse 70% 50% at 10% -10%, rgba(90, 150, 255, 0.14), transparent), #07070d;
}

.sso-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.sso-panel__sidebar {
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(14, 15, 26, 0.98) 0%, rgba(8, 8, 12, 0.99) 100%);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sso-panel__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #e8eaf0;
}

.sso-panel__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(90, 150, 255, 0.2);
}

.sso-panel__brand-text {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.sso-panel__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sso-panel__nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  color: #7c8fa8;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.sso-panel__nav a:hover,
.sso-panel__nav a.is-active {
  background: rgba(90, 150, 255, 0.12);
  color: #7ab4ff;
}

.sso-panel__nav a.is-active {
  box-shadow: inset 0 0 0 1px rgba(90, 150, 255, 0.22);
}

.sso-panel__main {
  padding: 36px 40px 48px;
  max-width: 920px;
}

.sso-panel__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #fff 40%, rgba(90, 150, 255, 0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sso-panel__lead {
  color: #7c8fa8;
  margin: 0 0 28px;
  font-size: 0.95rem;
}

.panel-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(145deg, rgba(14, 15, 26, 0.95) 0%, rgba(10, 10, 18, 0.96) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 32px 80px rgba(0, 0, 0, 0.55), 0 8px 24px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 24px 22px;
  margin-bottom: 16px;
}

.panel-card h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #e8eaf0;
}

.panel-card p,
.panel-card li {
  color: #7c8fa8;
  font-size: 0.88rem;
  line-height: 1.55;
}

.session-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.session-card--current {
  border-color: rgba(90, 150, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(90, 150, 255, 0.12);
}

.session-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(90, 150, 255, 0.15);
  color: #7ab4ff;
  margin-bottom: 8px;
}

.session-meta {
  display: grid;
  gap: 4px;
  font-size: 0.82rem;
  color: #7c8fa8;
  margin: 10px 0 12px;
}

.session-meta strong {
  color: #e8eaf0;
  font-weight: 600;
}

@media (max-width: 900px) {
  .sso-panel {
    grid-template-columns: 1fr;
  }
  .sso-panel__sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .sso-panel__nav {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  .sso-panel__main {
    padding: 24px 18px 40px;
  }
}

/*# sourceMappingURL=sso.css.map */
