/* Register page layout (uses your existing style.css variables/classes) */

.auth-wrap{
  padding: 34px 0 70px;
}

.auth-card{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  padding: 18px;
}

.auth-left{
  padding: 10px 8px;
  transform: translateZ(26px);
}

.auth-title{
  margin: 8px 0 8px;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: .2px;
}

.auth-sub{
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.7;
  max-width: 60ch;
}

.auth-points{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}

.auth-right{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  box-shadow: 0 12px 30px rgba(0,0,0,.40);
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap: 12px;
  transform: translateZ(30px);
}

.google-box{
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
}

.auth-msg{
  min-height: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

.auth-small{
  font-size: 12px;
  line-height: 1.6;
}

.auth-user{
  display:flex;
  align-items:center;
  gap: 12px;
}

.auth-avatar{
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  overflow:hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.40);
}
.auth-avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.auth-name{
  font-weight: 900;
  letter-spacing: .2px;
}
.auth-email{
  color: rgba(255,255,255,.68);
  font-size: 13px;
  margin-top: 2px;
}

.auth-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 6px;
}

/* responsive */
@media (max-width: 980px){
  .auth-card{grid-template-columns: 1fr;}
  .auth-title{font-size: 28px;}
  .auth-points{grid-template-columns: 1fr;}
}