/* /public_html/assets/css/login.css */

.auth-page .site-main{
  position:relative;
}

.auth-shell{
  padding:56px 0 34px;
}

.auth-shell__grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);
  gap:28px;
  align-items:stretch;
}

.auth-showcase,
.auth-card{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow-lg);
}

.auth-showcase{
  background:
    radial-gradient(circle at top left, rgba(139,92,246,.20), transparent 32%),
    radial-gradient(circle at bottom right, rgba(236,72,153,.14), transparent 30%),
    linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border-radius:32px;
  padding:38px;
  min-height:100%;
}

.auth-showcase__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(139,92,246,.12);
  color:var(--brand);
  border:1px solid rgba(139,92,246,.18);
  font-size:.84rem;
  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;
}

.auth-showcase__title{
  margin:20px 0 14px;
  color:var(--heading);
  font-size:clamp(2.2rem,4vw,4.25rem);
  line-height:1.02;
  letter-spacing:-.04em;
  max-width:11ch;
}

.auth-showcase__text{
  margin:0;
  color:var(--muted);
  font-size:1.06rem;
  max-width:58ch;
}

.auth-showcase__points{
  display:grid;
  gap:14px;
  margin-top:28px;
}

.auth-point{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:14px;
  align-items:start;
  padding:16px 16px;
  border-radius:20px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
  backdrop-filter:blur(8px);
}

html[data-theme="light"] .auth-point{
  background:rgba(255,255,255,.72);
}

.auth-point__icon{
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;
  font-size:1.1rem;
  box-shadow:0 12px 26px rgba(139,92,246,.22);
}

.auth-point strong{
  display:block;
  margin-bottom:4px;
  color:var(--heading);
  font-size:1rem;
}

.auth-point span{
  display:block;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.6;
}

.auth-panel{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100%;
}

.auth-panel__glow{
  position:absolute;
  border-radius:50%;
  filter:blur(12px);
  pointer-events:none;
}

.auth-panel__glow--one{
  width:180px;
  height:180px;
  top:-18px;
  right:28px;
  background:rgba(139,92,246,.18);
}

.auth-panel__glow--two{
  width:170px;
  height:170px;
  bottom:10px;
  left:12px;
  background:rgba(236,72,153,.16);
}

.auth-card{
  width:min(100%, 560px);
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  backdrop-filter:blur(18px);
  padding:30px;
}

html[data-theme="light"] .auth-card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.94)),
    linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
}

.auth-card__top{
  margin-bottom:18px;
}

.auth-card__eyebrow{
  display:inline-block;
  margin-bottom:10px;
  color:var(--brand);
  font-size:.84rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.auth-card__title{
  margin:0 0 8px;
  color:var(--heading);
  font-size:2rem;
  line-height:1.1;
}

.auth-card__subtitle{
  margin:0;
  color:var(--muted);
  max-width:46ch;
}

.auth-form{
  gap:15px;
}

.auth-form input{
  min-height:54px;
  border-radius:16px;
}

.auth-form__submit{
  width:100%;
  margin-top:6px;
  min-height:54px;
  font-size:1rem;
  letter-spacing:.01em;
}

.auth-card__links{
  margin-top:16px;
}

.auth-card__links .form-note{
  text-align:center;
}

.auth-card__links .form-note + .form-note{
  margin-top:10px;
}

@media (max-width: 1024px){
  .auth-shell__grid{
    grid-template-columns:1fr;
  }

  .auth-showcase__title{
    max-width:none;
  }
}

@media (max-width: 640px){
  .auth-shell{
    padding-top:34px;
  }

  .auth-showcase,
  .auth-card{
    padding:22px;
    border-radius:24px;
  }

  .auth-point{
    grid-template-columns:46px 1fr;
    padding:14px;
  }

  .auth-point__icon{
    width:46px;
    height:46px;
    border-radius:14px;
  }
}