.auth-page{ padding:40px 0 80px; }
.auth-hero{ max-width:560px; padding-top:12px; }
.auth-hero h1{ font-size:36px; font-weight:800; margin-bottom:10px; }
.auth-hero p{ font-size:17px; color:#c9d2f5; margin:0; }
.auth-hero--center{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}
.auth-hero--single{
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}

.auth-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.8fr) minmax(0, 1.2fr);
  gap:28px;
  margin-top:32px;
  align-items:flex-start;
}
.auth-layout--single{
  grid-template-columns:minmax(0, 1fr);
  max-width:720px;
  margin:32px auto 0;
}
.auth-layout--center{
  grid-template-columns:minmax(0, 1fr);
  max-width:620px;
  margin:32px auto 0;
}
.auth-column-main{ display:flex; flex-direction:column; gap:24px; }

.auth-card{
  background:rgba(16,20,38,.94);
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  padding:24px 24px 20px;
  box-shadow:0 20px 45px rgba(3,10,31,.55);
}
.auth-card--secondary{
  box-shadow:0 16px 36px rgba(3,10,31,.45);
}
.auth-card__header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  margin-bottom:18px;
}
.auth-card__title{
  font-size:20px;
  font-weight:700;
  margin:0 0 4px;
}
.auth-card__subtitle{
  font-size:13px;
  color:#aeb7da;
  margin:0;
}

.auth-form .form-group{ margin-bottom:14px; }
.auth-field-label{
  display:block;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#8aa1ff;
  margin-bottom:6px;
}
.auth-form .form-control{
  background:rgba(5,10,24,.94);
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  color:#ffffff;
  padding:10px 12px;
  font-size:14px;
}
.auth-form .form-control::placeholder{
  color:#6c7397;
}
.auth-form .form-control:focus{
  border-color:#7c5dff;
  box-shadow:0 0 0 1px rgba(124,93,255,.65);
  background:rgba(7,14,30,.98);
}
.auth-form .form-check{
  display:flex;
  align-items:center;
  gap:8px;
  padding-left:12px;
  margin-top:10px;
}
.auth-form .form-check-input{
  position:static;
  margin:0;
}
.auth-form .form-check-label{
  margin-bottom:0;
}

.auth-form__footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin:8px 0 14px;
  gap:16px;
}
.auth-remember{
  display:flex;
  align-items:center;
  gap:8px;
}
.auth-remember label{
  margin-bottom:0;
  font-size:14px;
}
.auth-link-small{
  font-size:13px;
  color:#9cd2ff;
}
.auth-link-small:hover{
  color:#ffffff;
  text-decoration:none;
}
.auth-link-row{
  margin-top:12px;
  display:flex;
  justify-content:flex-start;
}

.auth-btn{
  border-radius:999px;
  font-weight:600;
  padding:10px 16px;
  font-size:15px;
}
.auth-btn--primary{
  background:#7c5dff;
  border-color:#7c5dff;
  color:#ffffff;
}
.auth-btn--primary:hover{
  background:#8c6dff;
  border-color:#8c6dff;
}
.auth-btn[disabled]{
  opacity:.7;
  cursor:not-allowed;
}

.auth-alert{
  margin-top:6px;
  margin-bottom:10px;
  font-size:14px;
}

.auth-password-meta{
  margin-top:6px;
  font-size:12px;
  color:#c7cee5;
}
#newPassWordHelp,
#passWordStrength{
  color:#ff9aa2;
  font-size:13px;
  margin-top:6px;
}
.auth-terms{
  font-size:13px;
  margin-top:6px;
}
.auth-terms a{
  color:#9cd2ff;
}

.auth-social-intro{
  font-size:13px;
  color:#c7cee5;
  margin-bottom:14px;
}
.auth-social-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.auth-social-btn{
  width:100%;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  padding:10px 14px;
  background:rgba(5,10,24,.96);
  color:#e3e9ff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:14px;
  font-weight:500;
  text-decoration:none;
  transition:background .15s ease,border-color .15s ease,transform .08s ease;
}
.auth-social-btn i{
  font-size:16px;
}
.auth-social-btn:hover{
  text-decoration:none;
  transform:translateY(-1px);
}
.auth-social-btn--twitter{
  border-color:rgba(29,161,242,.7);
  color:#d0ecff;
}
.auth-social-btn--twitter:hover{
  background:rgba(29,161,242,.18);
}
.auth-social-btn--facebook{
  border-color:rgba(59,89,152,.75);
}
.auth-social-btn--facebook:hover{
  background:rgba(59,89,152,.22);
}
.auth-social-btn--google{
  border-color:rgba(234,67,53,.75);
}
.auth-social-btn--google:hover{
  background:rgba(234,67,53,.18);
}
.auth-social-btn--steam{
  border-color:rgba(27,40,56,.85);
}
.auth-social-btn--steam:hover{
  background:rgba(27,40,56,.7);
}
.auth-social-note{
  margin-top:10px;
  font-size:12px;
  color:#8f97c0;
}

@media (max-width:900px){
  .auth-page{ padding-top:32px; }
  .auth-layout{
    grid-template-columns:1fr;
    gap:20px;
  }
}
@media (max-width:640px){
  .auth-hero h1{ font-size:30px; }
}
