/* Layout */
.auth{
  display:grid;
  grid-template-columns:minmax(280px, 0.6fr) 560px;
  grid-template-rows:minmax(0, 1fr); 

  background:#fff;
  align-items:stretch; 
}
section.auth{
  margin:0;
}
@media (max-width: 992px){
  .auth{ grid-template-columns:1fr; }
}

/* Left hero */
.auth-hero{
  position:relative;
  overflow:hidden;
}

.auth-hero__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.auth-hero__swoosh{
  position:absolute; inset:-10% -15% auto auto;
  width:50%; height:50%;
  background: radial-gradient(60% 90% at 100% 0%, #ff7f23 0%, rgba(255,127,35,0) 70%);
  pointer-events:none;
}
@media (max-width: 992px){
  .auth-hero{ height:36vh; border-radius:0; }
}

/* Right column */
.auth-main{
  display:flex; 
  place-items:start center;
  padding:40px 24px;
  transform: translateX(200px);
}
.auth-wrap{ width:100%; max-width:404px; }

/* Headings */
.auth-title{ margin:0 0 10px; font-weight:800; font-size:32px; line-height:1.15; }
.auth-sub{ margin:0 0 20px; color:#6b7280; }

/* Card */
.auth-card{
  background:#fff; border-radius:18px; padding:18px;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.06);
}

/* Orange CTA */
.btn-login{
  display:inline-block; border:0;
  background:linear-gradient(90deg,#f7941d,#f26522);
  color:#fff; font-weight:700; padding:12px 18px;
  border-radius:10px; box-shadow:0 10px 18px rgba(242,101,34,.25);
}
.btn-login:hover{ filter:brightness(.98); }
.btn-login:active{ transform:translateY(1px); }

/* “or” divider */
.auth-or{
  position:relative; text-align:center; margin:14px 0;
  font-size:.85rem; color:#9aa0a6;
}
.auth-or::before, .auth-or::after{
  content:""; height:1px; background:rgba(0,0,0,.12);
  position:absolute; top:50%; width:38%;
}
.auth-or::before{ left:0; } .auth-or::after{ right:0; }

/* Social buttons */
.social-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:12px; }
.btn-social{
  flex:1 1 48%;
  display:flex; align-items:center; gap:8px;
  border:1px solid rgba(0,0,0,.1); background:#fff;
  border-radius:10px; padding:10px 12px; color:#111; font-weight:600;
}
.btn-social svg{ width:18px; height:18px; }
.btn-google{ }
.btn-apple{ }

/* Footer line */
.auth-small{ color:#6b7280; margin-top:4px; }
.link-signin{ color:#f7941d; font-weight:700; text-decoration:none; }
.link-signin:hover{ text-decoration:underline; }