/* assets/login.css */
:root{
  --brand: #F58320;
  --brand2: #E46F10;
  --brand-soft: rgba(245,131,32,.16);
  --stroke: rgba(255,255,255,.12);
  --panel: rgba(255,255,255,.06);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.65);
  --shadow: 0 22px 60px rgba(0,0,0,.35);
}

.login-body{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 22px;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(245,131,32,.22), transparent 60%),
    radial-gradient(1100px 560px at 80% 0%, rgba(228,111,16,.18), transparent 60%),
    radial-gradient(900px 500px at 50% 115%, rgba(245,131,32,.12), transparent 70%),
    #0b1020;
}

.login-wrap{
  width: 100%;
  max-width: 1040px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.login-card{
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  padding: 20px;
}

.login-brand{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 14px;
}

.login-logo{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 8px;
  overflow:hidden;
}

.login-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.30));
}

.login-title{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 20px;
  color: var(--text);
  line-height: 1.1;
}

.login-subtitle{
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

.login-alert{
  margin: 10px 0 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,0,0,.10);
  border: 1px solid rgba(255,0,0,.20);
  color: rgba(255,255,255,.92);
  font-size: 13px;
}

.login-form{
  display:flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.field{
  display:flex;
  flex-direction: column;
  gap: 6px;
}

.field span{
  font-size: 12px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
}

.field input{
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  color: rgba(255,255,255,.92);
  padding: 10px 12px;
  outline: none;
  font-weight: 700;
}

.field input:focus{
  border-color: rgba(245,131,32,.40);
  box-shadow: 0 0 0 4px rgba(245,131,32,.12);
}

.login-btn{
  height: 46px;
  border-radius: 14px;
  font-weight: 900;
}

.login-foot{
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  display:flex;
  justify-content: space-between;
}

/* Right side */
.login-side{
  border-radius: 22px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(245,131,32,.12), rgba(228,111,16,.06));
  border: 1px solid rgba(245,131,32,.20);
  box-shadow: var(--shadow);
}

.side-card{
  height: 100%;
  display:flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.side-badge{
  display:inline-flex;
  align-self:flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
  font-weight: 900;
  font-size: 12px;
}

.side-h1{
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: .2px;
  color: rgba(255,255,255,.95);
}

.side-p{
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.5;
}

.side-list{
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display:flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

/* Mobile */
@media (max-width: 920px){
  .login-wrap{
    grid-template-columns: 1fr;
  }
  .login-side{
    display:none;
  }
}
