/* ===== Make Order New Card UI (newcard.css) ===== */

.mo-page{
  --bg:#f3f6fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --line:#e6edf5;
  --shadow: 0 12px 40px rgba(2, 8, 23, .08);
  --radius: 14px;

  --primary:#2563eb;
  --cta:#22c55e;
  --ctaText:#063b24;
  color: var(--text);
}

/* stepbar */
.mo-stepbar{ padding: 1.25rem; }
.mo-stepbar__inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
}
.mo-stepbar__title{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
}
.mo-steps{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.mo-step{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 9px 12px;
  border:1px solid var(--line);
  background:#fff;
  border-radius: 999px;
  font-weight: 800;
  color:#0f172a;
  font-size: 13px;
}
.mo-step span{
  width:22px;height:22px;
  border-radius:999px;
  display:grid;place-items:center;
  background:#0f172a;
  color:#fff;
  font-size: 12px;
}

.mo-step.is-disabled{
  opacity:.45;
}
.mo-step.is-active{
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 0 0 4px rgba(37,99,235,.08);
}
.mo-step.is-active span{
  background: var(--primary);
}

/* content */
.mo-content{ padding: 10px 0 40px; }
.mo-card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

/* empty */
.mo-empty{
  padding: 44px 10px;
  text-align:center;
}
.mo-empty__title{
  margin-top: 14px;
  font-size: 18px;
  font-weight: 900;
}
.mo-empty__desc{
  margin: 6px 0 18px;
  color: var(--muted);
}

/* form */
.mo-form{ display:block; }
.mo-field{ margin-bottom: 18px; }

.mo-label{
  display:block;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 6px;
}
.mo-label-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 6px;
}
.mo-help{
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.mo-pill{
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background:#fff;
  color:#0f172a;
}

.mo-input{
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid #dbe6f7;
  background:#fff;
  border-radius: 12px;
  padding: 10px 12px;
}
.mo-input__icon{
  width:34px;height:34px;
  border-radius: 10px;
  display:grid;place-items:center;
  background:#f1f5ff;
  color: var(--primary);
  font-size: 18px;
}
.mo-input__control{
  width:100%;
  border:0;
  outline:0;
  font-size: 15px;
  background: transparent;
}
.mo-input:focus-within{
  border-color: rgba(37,99,235,.45);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}

.mo-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.mo-chip{
  border:1px solid #dbe6f7;
  background:#fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 13px;
  cursor:pointer;
  color:#0f172a;
}
.mo-chip:hover{
  border-color: rgba(37,99,235,.35);
  background: rgba(37,99,235,.05);
}

.mo-counter{
  color:#94a3b8;
  font-weight: 900;
  font-size: 12px;
}

.mo-textarea{
  border:1px solid #dbe6f7;
  background:#fff;
  border-radius: 12px;
  padding: 12px;
}
.mo-textarea__control{
  width:100%;
  border:0;
  outline:0;
  min-height: 220px;
  resize: vertical;
  font-size: 14px;
  background: transparent;
}
.mo-textarea:focus-within{
  border-color: rgba(37,99,235,.45);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}

.mo-select{
  width:100%;
  border:1px solid #dbe6f7;
  border-radius: 12px;
  padding: 12px 14px;
  outline:0;
  background:#fff;
}
.mo-select:focus{
  border-color: rgba(37,99,235,.45);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}

/* footer */
.mo-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding-top: 14px;
  margin-top: 10px;
  border-top: 1px solid var(--line);
  flex-wrap:wrap;
}
.mo-price{
  display:flex;
  align-items:center;
  gap:12px;
}
.mo-price__val{
  font-size: 26px;
  font-weight: 950;
}
.mo-discount{
  font-size: 12px;
  font-weight: 950;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  color: #16a34a;
}

/* buttons */
.mo-btn{
  border:0;
  border-radius: 12px;
  padding: 13px 16px;
  font-weight: 400;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.mo-btn--primary{
  background: var(--primary);
  color:#fff;
}
.mo-btn--cta{
  background: var(--cta);
  color: var(--ctaText);
  min-width: 190px;
  justify-content:center;
}
.mo-btn:disabled{
  opacity:.45;
  cursor:not-allowed;
}

/* mobile */
@media (max-width: 992px){
  .mo-stepbar__inner{ flex-direction:column; align-items:center; gap:20px; }
  .mo-steps{ justify-content:flex-start; }
  .mo-price__val{ font-size: 22px; }
  .mo-stepbar { padding: 1.25rem .25rem ;}
  .mo-step {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px 6px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    font-weight: 500;
    color: #0f172a;
    font-size: 10px;
  } 
  .mo-step span {
        width: 15px;
    height: 15px;
        font-size: 8px;
      }
      .mo-steps {
            gap: 4px;}
}



.mo-head{
  padding: 18px 0px;
  border-bottom: 1px solid #e6edf5;
  background: #fff;
}
.mo-head__left{
  display:flex;
  align-items:center;
  gap:14px;
}
.mo-platform{
  width:54px;
  height:54px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}
.mo-head__meta{ display:flex; flex-direction:column; gap:2px; }
.mo-head__cat{
  font-size: 12px;
  font-weight: 800;
  color:#64748b;
  text-decoration:none;
}
.mo-head__title{
  margin:0;
  font-size: 18px;
  font-weight: 950;
  color:#0f172a;
}

/* body */
.mo-body{ padding: 18px 20px 20px; background:#fff; }
.mo-form{ display:block; }

.mo-field{ margin-bottom: 18px; }
.mo-label{
  display:block;
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 950;
  color:#0f172a;
}
.mo-help{
  margin: 0 0 10px;
  font-size: 13px;
  color:#64748b;
}

.mo-input{
  display:flex;
  align-items:center;
  gap:12px;
  border:1px solid #dbe6f7;
  border-radius: 14px;
  padding: 10px 12px;
  background:#fff;
}
.mo-input__icon{
  width:38px;height:38px;
  padding: 10px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  color:#fff;
}
.mo-input__icon svg{ display:block; }
.mo-input__control{
  width:100%;
  border:0;
  outline:0;
  font-size: 15px;
  background:transparent;
}
.mo-input:focus-within{
  border-color: rgba(37,99,235,.45);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}

.mo-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.mo-chip{
  border:1px solid #dbe6f7;
  background:#fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 850;
  font-size: 13px;
  cursor:pointer;
  color:#0f172a;
}
.mo-chip:hover{
  border-color: rgba(37,99,235,.35);
  background: rgba(37,99,235,.05);
}

.mo-label-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.mo-counter{
  font-size: 12px;
  font-weight: 950;
  color:#94a3b8;
}

.mo-textarea{
  border:1px solid #dbe6f7;
  border-radius: 14px;
  padding: 12px;
  background:#fff;
}
.mo-textarea__control{
  width:100%;
  min-height: 220px;
  border:0;
  outline:0;
  resize: vertical;
  font-size: 14px;
  background:transparent;
}
.mo-textarea:focus-within{
  border-color: rgba(37,99,235,.45);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}

.mo-select{
  width:100%;
  border:1px solid #dbe6f7;
  border-radius: 14px;
  padding: 12px 14px;
  outline:0;
  background:#fff;
}
.mo-select:focus{
  border-color: rgba(37,99,235,.45);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}

/* footer */
.mo-footer{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
  padding-top: 14px;
  margin-top: 10px;
  border-top: 1px solid #e6edf5;
  flex-wrap:wrap;
}
.mo-price{
  display:flex;
  align-items:center;
  gap:12px;
}
.mo-price__val{
  font-size: 26px;
  font-weight: 950;
  color:#0f172a;
}
.mo-discount{
  font-size: 12px;
  font-weight: 950;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  color: #16a34a;
}

.mo-btn{
  border:0;
  border-radius: 14px;
  padding: 13px 18px;
  font-weight: 400;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.mo-btn--cta{
  background: #22c55e;
  color: #ffffff;
  min-width: 190px;
  transition-duration: 0.3s;
}
.mo-btn--cta:hover{
  background: #0f863b;
  color: #ffffff;
}
.mo-btn--onay{
  background: #2563eb;
  color: #ffffff;
  min-width: 190px;
  transition-duration: 0.3s;
}
.mo-btn--onay:hover{
  background: #123b96;
  color: #ffffff;
}
.mo-btn--cancel{
  background: #b43a3a;
  color: #ffffff;
  min-width: 190px;
  transition-duration: 0.3s;
}
.mo-btn--cancel:hover{
  background: #6e1e1e;
  color: #ffffff;
}
.mo-btn:disabled{
  opacity:.45;
  cursor:not-allowed;
}

@media (max-width: 992px){
  .mo-footer{ justify-content:space-between; }
  .mo-price__val{ font-size: 22px; }
}
/* Üst ikon: daha büyük, çerçevesiz, gölgesiz */
.mo-platform{
  width:54px;
  height:54px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  box-shadow: none !important;
  border: 0 !important;
}

/* svg boyutu büyüsün */
.mo-platform svg{
  width:32px;
  height:32px;
}


.mo-price__old{
  font-size: 18px;
  font-weight: 900;
  color: #94a3b8;
  text-decoration: line-through;
}

/* Cart (new style) */
.mc-cart{ margin: 22px 0 70px; }
.mc-layout{
  display:grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, .9fr);
  gap: 24px;
}
.mc-payment .mc-layout{
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.mc-card{
  background:#fff;
  border-radius:16px;
  box-shadow: 0 12px 30px rgba(2, 8, 23, .08);
  border:1px solid #e6edf5;

}
.mc-card__head{
  padding: 16px 18px;
  border-bottom: 1px solid #e6edf5;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.mc-card__title{
  font-size: 16px;
  font-weight: 900;
  color:#0f172a;
}
.mc-card__body{
  padding: 16px 18px;
}
.mc-card--sticky{
  position: sticky;
  top: 120px;
}

/* Order Success */
.mc-order-success .mc-card__title{ font-weight: 900; }
.os-hero .os-status{
  display:flex;
  align-items:flex-start;
  gap:14px;
}
.os-hero .os-icon{
  width:52px;
  height:52px;
  padding: 14px;
  border-radius:14px;
  background:#22c55e;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  box-shadow: 0 10px 20px rgba(34,197,94,.2);
}
.os-hero .os-title{
  font-weight:900;
  font-size:18px;
  color:#0f172a;
}
.os-hero .os-desc{ color:#475569; }
.os-note{
  margin-top:12px;
  padding:12px 14px;
  background:#f1f5f9;
  border-radius:12px;
  color:#0f172a;
}
.os-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.os-item{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  color:#0f172a;
}
.os-iconbox{
  width:42px;
  height:42px;
  border-radius:12px;
  background:#111827;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  box-shadow: 0 8px 18px rgba(2,8,23,.12);
}
.os-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:8px 0;
  border-bottom:1px dashed #e6edf5;
  color:#0f172a;
  font-weight:700;
}
.os-row:last-child{ border-bottom:0; }
.os-row span:first-child{ color:#64748b; font-weight:600; }
.os-total span:last-child{ color:#16a34a; font-weight:900; }
.os-copy{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:#f1f5f9;
  border-radius:10px;
  padding:6px 10px;
  color:#0f172a;
  font-weight:800;
  cursor:pointer;
}

.mc-empty{
  padding: 30px 10px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.mc-empty__title{
  font-weight: 800;
  color:#64748b;
}

.mc-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
  border-bottom: 1px solid #eef2f7;
}
.mc-item:last-child{ border-bottom: 0; }
.mc-item__left{ display:flex; align-items:center; gap:12px; }
.mc-item__icon{
  width:44px;
  height:44px;
  border-radius:12px;
  display:grid;
  place-items:center;
  border:2px solid currentColor;
  background: #f8fafc;
  padding: 6px;
}
.mc-item__icon svg{ width:26px; height:26px; display:block; }
.mc-item__title{
  font-weight: 900;
  color:#0f172a;
}
.mc-item__sub{
  font-size: 12px;
  color:#64748b;
  word-break: break-all;
}
.mc-item__right{
  display:flex;
  align-items:center;
  gap:14px;
}
.mc-item__price{ text-align:right; }
.mc-item__old{
  font-size: 12px;
  color:#94a3b8;
  text-decoration: line-through;
}
.mc-item__new{
  font-weight: 900;
  color:#0f172a;
}
.mc-item__discount{
  font-size: 12px;
  font-weight: 800;
  color:#10b981;
}
.mc-item__remove{
  width:38px;
  height:38px;
  border-radius:10px;
  display:grid;
  place-items:center;
  border:1px solid #e2e8f0;
  color:#ef4444;
  text-decoration:none;
}

.mc-details{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mc-details li{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight: 700;
  color:#0f172a;
  border-top: 1px solid #d8e2ee;
  padding-top: 10px;
}
.mc-details li .muted{ color:#94a3b8; }
.mc-details li .line{ text-decoration: line-through; }
.mc-details li .green{ color:#10b981; }

/* legacy details list inside new cards */
.mc-card .details{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mc-card .details li{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight:700;
  color:#0f172a;
}
.mc-card .details li .green{ color:#10b981; }
.mc-details li.total{
  padding-top: 10px;
  border-top: 1px dashed #667385;
  font-size: 16px;
}

.mc-coupon__title{
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color:#64748b;
  margin-bottom: 8px;
}
.mc-coupon{
  display:flex;
  gap:10px;
  align-items:center;
}
.mc-coupon .mo-btn{
  width:44px;
  height:44px;
  padding:6px !important;
  display:grid;
  place-items:center;
  border-radius:12px;
}
.mc-coupon .mo-btn--primary{
  color:#fff;
}
.mo-btn--ghost{
  background:#fff;
  border:1px solid #f13838;
  color:#f13838;
}
.mc-coupon__input{
  flex:1;
  display:flex;
  align-items:center;
  gap:8px;
  border:1px solid #dbe6f7;
  border-radius: 12px;
  padding: 10px 12px;
  background:#fff;
}
.mc-coupon__input input{
  border:0;
  outline:0;
  width:100%;
  background:transparent;
  font-size: 14px;
}
.mc-coupon__remove{
  margin-top: 8px;
  color:#ef4444;
  background:transparent;
  border:0;
  padding:0;
  font-weight: 700;
}

/* Summary blocks */
.mc-summary{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.mc-summary__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight:700;
  color:#0f172a;
  font-size:16px;
}
.mc-summary__foot{
  margin-top:10px;
  font-size:12px;
  color:#64748b;
  font-weight:800;
}

@media (max-width: 992px){
  .mc-layout{ grid-template-columns: 1fr !important; }
  .mc-card--sticky{ position:static; }
}

/* User Information - Inputs */
.mc-card .ingroup,
.mc-form .ingroup{
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid #dbe6f7;
  border-radius: 14px;
  padding: 10px 12px;
  background:#fff;
}
.mc-card .ingroup i,
.mc-form .ingroup i{
  width:40px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:#f1f5f9;
  color:#0f172a;
  font-size:16px;
}

.mc-card .ingroup input,
.mc-form .ingroup input{
  border:0;
  outline:0;
  width:100%;
  font-size:18px;
}

.mc-card .ingroup .check-box,
.mc-form .ingroup .check-box{
  border:1px solid #8aa0c8;
  font-size:18px;
}

/* Payment Methods - New Style */
.payment-method-list .payment-method-item{
  display:block;
  width:100%;
}
.payment-method-list .payment-method-item input{ display:none; }
.payment-method-list .payment-method-item .payment-method-item-content{
  border:1px solid #e6edf5;
  border-radius:14px;
  background:#fff;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  transition:.2s ease;
  box-shadow: 0 8px 22px rgba(2,8,23,.06);
}
.payment-method-list .payment-method-item .payment-method-left{
  display:flex;
  align-items:center;
  gap:12px;
}
.payment-method-list .payment-method-item .payment-method-left .logo{
  width:58px;
  height:40px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f1f5f9;
}
.payment-method-list .payment-method-item .payment-method-details{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.payment-method-list .payment-method-item .payment-method-name{
  font-weight:900;
  color:#0f172a;
}
.payment-method-list .payment-method-item .payment-method-description{
  font-size:12px;
  color:#64748b;
  font-weight:700;
}
.payment-method-list .payment-method-item .payment-method-right{
      display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-direction: column-reverse;
        text-align: end;
}
.payment-method-list .payment-method-item .commision-text{
  font-weight:800;
  color:#10b981;
  font-size:12px;
}
.payment-method-list .payment-method-item .payment-method-checkbox{
  width:30px;
  height:30px;
  border-radius:10px;
  border:1px solid #e2e8f0;
  display:grid;
  place-items:center;
  color:#94a3b8;
}
.payment-method-list .payment-method-item:has(input:checked) .payment-method-item-content{
  border-color:#22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}
.payment-method-list .payment-method-item:has(input:checked) .payment-method-checkbox{
  background:#22c55e;
  border-color:#22c55e;
  color:#fff;
}

.payment-method-list .divider{
  margin: 24px 0 16px;
  border-bottom:1px dashed #e2e8f0;
  height:1px;
  text-align:center;
  position:relative;
}
.payment-method-list .divider span{
  position:relative;
  top:-10px;
  background:#fff;
  padding:0 10px;
  font-size:12px;
  color:#94a3b8;
  font-weight:800;
}

.payment-method-list .balance-row{
  display:flex;
  gap:16px;
  align-items:stretch;
}
.payment-method-list .add-balance-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-radius:14px;
  background:#22c55e;
  color:#fff;
  text-decoration:none;
  font-weight:800;
}
.payment-method-list .add-balance-link .link-left span{
  font-weight:600;
  font-size:12px;
}
.payment-method-list .add-balance-link .icon{
  width:38px;height:38px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.2);
}

@media (max-width: 992px){
  .payment-method-list .balance-row{ flex-direction:column; }
}

/* Agreement Modal */
#sozlesmeModal .modal-content{
  border-radius:16px;
  border:1px solid #e6edf5;
}
#sozlesmeModal .modal-header{
  border-bottom:1px solid #e6edf5;
}
.scrolling-wrapper{
  border:1px solid #e6edf5;
  border-radius:14px;
  padding:14px 16px;
  max-height:180px;
  overflow:auto;
  background:#f8fafc;
  margin-bottom:12px;
}
.scrolling-wrapper .title{
  font-size:12px;
  font-weight:900;
  color:#94a3b8;
  text-transform:uppercase;
  margin-bottom:6px;
}
.scrolling-wrapper .bigtitle{
  font-size:14px;
  font-weight:900;
  color:#0f172a;
  margin-bottom:8px;
}

/* Agreement checkbox 
.mc-card .form-check{
  gap:10px;
}
.mc-card .form-check-input{
  width:20px !important;
  height:20px !important;
  margin-top:0;
  border:2px solid #cbd5f1;
  border-radius:6px;
  display:inline-block;
  background:#fff;
  accent-color:#22c55e;
}
*/
.modal.show .modal-dialog {
    transform: none;
    max-width: 70%;
}

@media (max-width: 576px) {
  .modal.show .modal-dialog {
    transform: none;
    max-width: 100%;
}
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
}

/* Auth - Register / Login */
.auth-shell{
  background: radial-gradient(1200px 520px at 10% -10%, rgba(37,99,235,0.18), transparent 60%),
              linear-gradient(120deg, #e6f3ff 0%, #f0edff 100%);
  padding: 50px 0 70px;
}
.auth-card{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:0;
  background:#fff;
  border-radius: 26px;
  border:1px solid rgba(15,23,42,0.08);
  overflow:hidden;
  box-shadow: 0 26px 80px rgba(15,23,42,0.12);
}
.auth-aside{
  padding: 40px 42px;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(124,58,237,0.10));
}
.auth-logo{
  display:inline-flex;
  align-items:center;
  margin-bottom: 24px;
}
.auth-hero .kicker{
  font-size:12px;
  letter-spacing:.18em;
  text-transform: uppercase;
  font-weight:700;
  color:#64748b;
  margin-bottom: 8px;
}
.auth-hero h1{
  font-size:30px;
  font-weight:600;
  margin:0 0 10px 0;
  color:#0f172a;
}
.auth-hero p{
  color:#475569;
  margin:0 0 22px 0;
  line-height:1.6;
}
.auth-points{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.auth-points li{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  color:#0f172a;
}
.auth-points i{
  width:30px;
  height:30px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:#fff;
  color:#2563eb;
  box-shadow: 0 6px 16px rgba(2,8,23,.08);
}
.auth-note{
  margin-top: 26px;
  font-weight:600;
  color:#475569;
}
.auth-note a{
  color:#2563eb;
  font-weight:700;
}
.auth-form-wrap{
  padding: 40px 42px;
}
.auth-form-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 24px;
}
.auth-title{
  font-size:24px;
  font-weight:600;
  color:#0f172a;
}
.auth-login{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:700;
  color:#2563eb;
}
.auth-form{
  display:grid;
  gap:14px;
}
.auth-tip{
  font-size:13px;
  color:#64748b;
  margin-top: -2px;
}
.auth-agree .form-check-input{
  width:20px;
  height:20px;
  border:1px solid #93a4c2;
}
.auth-agree b{
  color:#2563eb;
  cursor:pointer;
}
.auth-form .btn-submit{
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border:0;
  color:#fff;
  padding:14px 16px;
  border-radius:14px;
  font-weight:800;
  letter-spacing:.02em;
  transition:.2s ease;
}
.auth-form .btn-submit:disabled{
  opacity:.6;
  cursor:not-allowed;
}

@media (max-width: 992px){
  .auth-card{ grid-template-columns: 1fr; }
  .auth-aside{ padding: 30px; }
  .auth-form-wrap{ padding: 30px; }
}
