.sk-auth-page {
  --sk-auth-bg: #101010;
  --sk-auth-bg-soft: #171717;
  --sk-auth-card: rgba(30, 30, 30, 0.96);
  --sk-auth-border: rgba(255, 255, 255, 0.1);
  --sk-auth-border-strong: rgba(197, 160, 58, 0.35);
  --sk-auth-text: #fff;
  --sk-auth-muted: #b7bbc1;
  --sk-auth-input: rgba(255, 255, 255, 0.04);
  --sk-auth-input-border: rgba(255, 255, 255, 0.12);
  --sk-auth-gold: #c5a03a;
  --sk-auth-gold-soft: #f0dfab;
  --sk-auth-danger: #ffb4b4;
  position: relative;
  min-height: calc(100vh - 13rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0;
}

.sk-auth-page::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(197, 160, 58, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, var(--sk-auth-bg-soft), var(--sk-auth-bg));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sk-auth-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
}

.sk-auth-card {
  border: 1px solid var(--sk-auth-border);
  border-top-color: var(--sk-auth-border-strong);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(35, 35, 35, 0.98), rgba(24, 24, 24, 0.98));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  color: var(--sk-auth-text);
  padding: 1.6rem;
}

.sk-auth-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.35rem;
}

.sk-auth-brand img {
  width: auto;
  height: 60px;
  object-fit: contain;
}

.sk-auth-copy {
  text-align: center;
  margin-bottom: 1.35rem;
}

.sk-auth-eyebrow {
  margin: 0 0 0.7rem;
  color: var(--sk-auth-gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sk-auth-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 2.2vw, 2.3rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.sk-auth-copy p {
  margin: 0.8rem auto 0;
  max-width: 30rem;
  color: var(--sk-auth-muted);
}

.sk-auth-alert,
.sk-auth-note {
  border-radius: 18px;
  padding: 0.95rem 1rem;
}

.sk-auth-note {
  border: 1px solid rgba(197, 160, 58, 0.18);
  background: rgba(197, 160, 58, 0.08);
  color: #e4dcc3;
}

.sk-auth-note strong {
  color: #fff;
}

.sk-auth-form {
  display: grid;
  gap: 1rem;
}

.sk-auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sk-auth-field {
  display: grid;
  gap: 0.45rem;
}

.sk-auth-field label {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.sk-auth-field input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--sk-auth-input-border);
  border-radius: 14px;
  background: var(--sk-auth-input);
  color: #fff;
  padding: 0.78rem 0.92rem;
}

.sk-auth-field input::placeholder {
  color: rgba(183, 187, 193, 0.7);
}

.sk-auth-field input:focus {
  border-color: rgba(197, 160, 58, 0.72);
  box-shadow: 0 0 0 0.2rem rgba(197, 160, 58, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.sk-auth-field .form-text {
  color: var(--sk-auth-muted);
  margin: 0;
}

.sk-auth-submit {
  width: 100%;
  min-height: 3.1rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sk-auth-gold-soft), var(--sk-auth-gold));
  color: #111;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sk-auth-submit:hover,
.sk-auth-submit:focus {
  background: linear-gradient(135deg, #f6e8ba, #d0aa45);
  color: #111;
}

.sk-auth-actions,
.sk-auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.sk-auth-links {
  justify-content: center;
}

.sk-auth-link,
.sk-auth-secondary {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.sk-auth-link:hover,
.sk-auth-link:focus,
.sk-auth-secondary:hover,
.sk-auth-secondary:focus {
  color: var(--sk-auth-gold-soft);
}

.sk-auth-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  border: 1px solid var(--sk-auth-input-border);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.sk-auth-stack {
  display: grid;
  gap: 1rem;
}

.sk-auth-inline-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sk-auth-inline-list li {
  color: var(--sk-auth-muted);
}

.sk-auth-inline-list strong {
  color: #fff;
}

.sk-auth-page a:focus-visible,
.sk-auth-page button:focus-visible,
.sk-auth-page input:focus-visible {
  outline: 3px solid rgba(197, 160, 58, 0.5);
  outline-offset: 3px;
}

@media (max-width: 767.98px) {
  .sk-auth-page {
    padding: 1rem 0;
  }

  .sk-auth-page::before {
    border-radius: 24px;
  }

  .sk-auth-card {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .sk-auth-brand img {
    height: 52px;
  }

  .sk-auth-grid {
    grid-template-columns: 1fr;
  }
}
