
.auth-page{
  min-height:100vh;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 10% 16%,rgba(255,255,255,.62),transparent 15%),
    radial-gradient(circle at 78% 18%,rgba(255,255,255,.32),transparent 19%),
    linear-gradient(135deg,#ff8a2a 0%,#f97316 30%,#d946ef 62%,#6d28d9 100%);
  position:relative;
  color:#172033;
}
.auth-page::before,
.auth-page::after{
  content:"";
  position:fixed;
  border-radius:50%;
  opacity:.38;
  pointer-events:none;
  animation:floatColorBall 10s ease-in-out infinite;
}
.auth-page::before{
  width:130px;
  height:130px;
  left:5%;
  bottom:9%;
}
.auth-page::after{
  width:210px;
  height:210px;
  right:6%;
  top:14%;
  animation-duration:13s;
  animation-delay:1.5s;
}
.auth-ball{
  position:fixed;
  border-radius:50%;
  pointer-events:none;
  opacity:.30;
  animation:floatColorBall 12s ease-in-out infinite;
}
.auth-ball.b1{width:70px;height:70px;left:18%;top:18%;animation-delay:.8s}
.auth-ball.b2{width:110px;height:110px;right:22%;bottom:12%;animation-delay:2s}
.auth-ball.b3{width:46px;height:46px;right:12%;top:50%;animation-delay:3.2s}

@keyframes floatColorBall{
  0%{transform:translate(0,0) scale(.88);background:#fff7ed}
  25%{transform:translate(18px,-28px) scale(1.06);background:#fed7aa}
  50%{transform:translate(-16px,-10px) scale(.78);background:#f0abfc}
  75%{transform:translate(22px,18px) scale(1.18);background:#bfdbfe}
  100%{transform:translate(0,0) scale(.88);background:#fff7ed}
}

.auth-shell{
  min-height:calc(100vh - 74px);
  display:grid;
  place-items:center;
  padding:34px 18px;
}
.auth-glass{
  width:min(1020px,100%);
  min-height:580px;
  display:grid;
  grid-template-columns:.68fr 1.32fr;
  border:1px solid rgba(255,255,255,.36);
  border-radius:34px;
  overflow:hidden;
  background:rgba(255,255,255,.16);
  backdrop-filter:blur(24px);
  box-shadow:0 30px 90px rgba(15,23,42,.28);
}
.auth-art{
  position:relative;
  padding:34px 28px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:
    radial-gradient(circle at 20% 20%,rgba(255,255,255,.28),transparent 18%),
    radial-gradient(circle at 80% 70%,rgba(255,255,255,.17),transparent 21%);
}
.auth-art::before{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  background:rgba(255,255,255,.20);
  border-radius:50%;
  right:-190px;
  top:92px;
  box-shadow:0 0 0 22px rgba(255,255,255,.08);
  animation:pulseWhite 5s ease-in-out infinite;
}
@keyframes pulseWhite{
  0%,100%{transform:scale(.96)}
  50%{transform:scale(1.08)}
}
.auth-art-content{
  position:relative;
  z-index:2;
}
.auth-art h1{
  margin:0;
  font-size:32px;
  line-height:1.08;
  letter-spacing:-.7px;
  color:#fff;
  text-shadow:0 8px 24px rgba(15,23,42,.25);
}
.auth-art p{
  font-size:15px;
  line-height:1.6;
  opacity:.94;
  max-width:300px;
}
.auth-icons{
  display:flex;
  gap:10px;
  margin-top:18px;
  flex-wrap:wrap;
}
.auth-icons span{
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.62);
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.14);
  animation:iconFloat 3.4s ease-in-out infinite;
}
.auth-icons span:nth-child(2){animation-delay:.4s}
.auth-icons span:nth-child(3){animation-delay:.8s}
.auth-icons span:nth-child(4){animation-delay:1.2s}
@keyframes iconFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-7px)}
}
.auth-benefits{
  display:grid;
  gap:9px;
  margin-top:22px;
}
.auth-benefits div{
  display:flex;
  align-items:center;
  gap:8px;
  color:#fff;
  font-size:14px;
  font-weight:850;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  padding:9px 12px;
}
.auth-food-card{
  position:relative;
  z-index:2;
  padding:15px;
  border-radius:22px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.32);
  box-shadow:0 20px 45px rgba(15,23,42,.18);
}
.auth-food-card strong{
  display:block;
  font-size:17px;
  color:#fff;
}
.auth-food-card small{
  display:block;
  margin-top:6px;
  opacity:.9;
  color:#fff;
}

.auth-panel{
  position:relative;
  z-index:3;
  background:rgba(255,255,255,.96);
  border-radius:32px 0 0 32px;
  margin:18px 18px 18px 0;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:#172033;
}
.auth-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  padding:7px;
  background:#fff7ed;
  border:1px solid #fed7aa;
  border-radius:999px;
  margin-bottom:22px;
}
.auth-tab{
  border:0;
  padding:12px;
  border-radius:999px;
  background:transparent;
  color:#9a3412;
  font-weight:950;
  cursor:pointer;
  transition:.22s ease;
}
.auth-tab.active{
  background:#ea580c;
  color:#fff;
  box-shadow:0 10px 22px rgba(234,88,12,.24);
}
.auth-slide{
  display:none;
  animation:authFade .28s ease both;
}
.auth-slide.active{display:block}
@keyframes authFade{
  from{opacity:0;transform:translateY(12px)}
  to{opacity:1;transform:translateY(0)}
}
.auth-panel h2{
  margin:0 0 7px;
  font-size:32px;
  letter-spacing:-.5px;
  color:#172033;
}
.auth-panel p{
  color:#475569;
  line-height:1.55;
  margin:0 0 20px;
  font-weight:500;
}
.auth-form{display:grid;gap:13px}
.input-wrap{position:relative}
.input-wrap span{
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  color:#ea580c;
  font-size:17px;
}
.input-wrap input{
  width:100%;
  height:54px;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:0 16px 0 46px;
  font:inherit;
  background:#fff;
  color:#172033;
  outline:none;
  transition:.22s ease;
}
.input-wrap input::placeholder{color:#64748b}
.input-wrap input:focus{
  border-color:#fb923c;
  box-shadow:0 0 0 4px rgba(251,146,60,.15);
  transform:translateY(-1px);
}
.auth-submit{
  width:100%;
  height:54px;
  border:0;
  border-radius:18px;
  color:#fff;
  background:linear-gradient(135deg,#f97316,#ea580c);
  font-weight:950;
  font-size:16px;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(234,88,12,.26);
  transition:.22s ease;
}
.auth-submit:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(234,88,12,.34);
}
.auth-link-btn{
  border:0;
  background:transparent;
  color:#c2410c;
  font-weight:900;
  cursor:pointer;
  padding:0;
}
.auth-mini{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-top:12px;
  color:#475569;
  font-size:14px;
}
.auth-alert{
  padding:12px 14px;
  border-radius:16px;
  margin-bottom:16px;
  font-weight:850;
}
.auth-alert.success{background:#dcfce7;color:#166534}
.auth-alert.error{background:#fee2e2;color:#991b1b}
.verify-card{
  width:min(620px,100%);
  margin:auto;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(255,255,255,.45);
  border-radius:34px;
  padding:34px;
  box-shadow:0 30px 90px rgba(15,23,42,.28);
}
.verify-card h1{margin-top:0;color:#172033}
.verify-card p{color:#475569}
.customer-header.auth-header{
  background:rgba(255,255,255,.18);
  border-bottom:1px solid rgba(255,255,255,.25);
  backdrop-filter:blur(18px);
}
.customer-header.auth-header .customer-logo,
.customer-header.auth-header .customer-nav a{color:#fff}
.customer-header.auth-header .cart-pill{
  background:rgba(255,255,255,.2)!important;
  border:1px solid rgba(255,255,255,.3);
}
.recent-dish-mini{display:none!important}

@media(max-width:900px){
  .auth-glass{grid-template-columns:1fr;min-height:auto}
  .auth-art{min-height:235px;padding:25px}
  .auth-art::before{width:250px;height:250px;right:-150px;top:60px}
  .auth-panel{margin:0;border-radius:32px 32px 0 0;padding:26px}
  .auth-benefits{grid-template-columns:1fr 1fr}
}
@media(max-width:560px){
  .auth-shell{padding:18px 12px 86px}
  .auth-art h1{font-size:30px}
  .auth-art p{font-size:14px}
  .auth-panel h2{font-size:27px}
  .auth-panel{padding:22px}
  .auth-benefits{grid-template-columns:1fr}
}
