*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  min-height:100vh;
  background:#eef2df;
  font-family:Arial, Helvetica, sans-serif;
  overflow:hidden;
  color:#ffffff;
}

.login-dashboard{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
}

.login-card{
  width:100%;
  max-width:980px;
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,#0b0b0b,#171717);
  border:1px solid rgba(212,175,55,0.18);
  border-radius:32px;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.35),
    inset 0 0 40px rgba(255,255,255,0.02);
  animation:fadeUp 0.8s ease;
}

.hero-shine{
  position:absolute;
  top:-120px;
  left:-260px;
  width:260px;
  height:700px;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,215,120,0.06),
    rgba(255,255,255,0.14),
    rgba(255,215,120,0.06),
    transparent
  );
  transform:rotate(20deg);
  animation:shineMove 8s linear infinite;
  pointer-events:none;
}

.login-header{
  position:relative;
  z-index:2;
  padding:38px 42px 28px;
  border-bottom:1px solid rgba(212,175,55,0.16);
}

.brand-area{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}

.brand-text h1{
  font-size:58px;
  line-height:1;
  margin-bottom:10px;
  font-family:Georgia, "Times New Roman", serif;
  font-weight:900;
  letter-spacing:1px;
  color:#d4af37;
  text-shadow:
    0 0 8px rgba(212,175,55,0.35),
    0 0 22px rgba(212,175,55,0.18);
}

.brand-text p{
  color:#ffffff;
  font-size:16px;
  opacity:0.92;
}

.center-logo{
  width:150px;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.center-logo img{
  width:100%;
  max-width:140px;
  max-height:70px;
  object-fit:contain;
  filter:
    drop-shadow(0 0 10px rgba(212,175,55,0.25))
    drop-shadow(0 0 20px rgba(212,175,55,0.08));
}

.login-content{
  position:relative;
  z-index:2;
  padding:42px;
}

.mini-title{
  display:block;
  margin-bottom:14px;
  font-size:15px;
  font-weight:900;
  letter-spacing:2px;
  font-family:Georgia, "Times New Roman", serif;
  color:#d4af37;
}

.login-content h2{
  font-size:60px;
  margin-bottom:16px;
  color:#ffffff;
}

.login-content p{
  max-width:760px;
  color:#d4d4d4;
  line-height:1.7;
  font-size:16px;
  margin-bottom:34px;
}

.login-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.form-group label{
  color:#d4af37;
  font-family:Georgia, "Times New Roman", serif;
  font-weight:900;
  font-size:14px;
}

.form-group input{
  width:100%;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid rgba(212,175,55,0.16);
  background:#111111;
  color:#ffffff;
  font-size:15px;
  outline:none;
  transition:0.25s ease;
}

.form-group input::placeholder{
  color:#777777;
}

.form-group input:focus{
  border-color:rgba(212,175,55,0.45);
  box-shadow:0 0 18px rgba(212,175,55,0.14);
}

.primary-btn{
  grid-column:span 2;
  margin-top:8px;
  padding:16px 22px;
  border:none;
  border-radius:16px;
  background:#d4af37;
  color:#111111;
  cursor:pointer;
  font-family:Georgia, "Times New Roman", serif;
  font-size:16px;
  font-weight:900;
  transition:0.3s ease;
  box-shadow:0 0 18px rgba(212,175,55,0.18);
}

.primary-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 26px rgba(212,175,55,0.34);
}

.login-message{
  margin-top:25px;
  padding:18px;
  border-radius:18px;
  background:linear-gradient(145deg,#141414,#1f1f1f);
  border:1px solid rgba(212,175,55,0.10);
  color:#d5d5d5;
  line-height:1.6;
}

.live-toast{
  position:fixed;
  bottom:30px;
  right:30px;
  display:flex;
  align-items:center;
  gap:14px;
  background:#111111;
  border:1px solid rgba(212,175,55,0.25);
  border-radius:18px;
  padding:16px 18px;
  z-index:9999;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    0 0 22px rgba(212,175,55,0.12);
  transform:translateY(0);
  animation:toastFloat 4s ease-in-out infinite;
}

.toast-dot{
  width:14px;
  height:14px;
  border-radius:50%;
  background:#22c55e;
  box-shadow:0 0 12px #22c55e;
}

.live-toast strong{
  display:block;
  margin-bottom:4px;
  color:#ffffff;
}

.live-toast p{
  color:#bbbbbb;
  font-size:14px;
}

@keyframes shineMove{
  0%{
    left:-260px;
  }

  100%{
    left:160%;
  }
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(25px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes toastFloat{
  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-5px);
  }

  100%{
    transform:translateY(0);
  }
}

@media(max-width:900px){

  .brand-area{
    flex-direction:column;
    align-items:flex-start;
  }

  .brand-text h1{
    font-size:42px;
  }

  .login-content h2{
    font-size:42px;
  }

  .login-form{
    grid-template-columns:1fr;
  }

  .primary-btn{
    grid-column:span 1;
  }
}

@media(max-width:600px){

  body{
    overflow:auto;
  }

  .login-dashboard{
    padding:22px 14px;
  }

  .login-header{
    padding:30px 24px 22px;
  }

  .login-content{
    padding:28px 24px;
  }

  .brand-text h1{
    font-size:34px;
  }

  .login-content h2{
    font-size:34px;
  }

  .center-logo{
    width:130px;
    height:70px;
  }

  .live-toast{
    left:15px;
    right:15px;
    bottom:15px;
  }
}

.legal-footer{
    text-align:center;
    margin-top:20px;
    padding-bottom:20px;
    font-size:14px;
    color:#999;
}

.legal-footer a{
    color:#d4af37;
    text-decoration:none;
    margin:0 8px;
}

.legal-footer a:hover{
    color:#ffd700;
}

.privacy-check{
    margin:18px 0;
    font-size:14px;
    color:#d8d8d8;
}

.privacy-check label{
    display:flex;
    gap:8px;
    align-items:flex-start;
    line-height:1.5;
}

.privacy-check input{
    margin-top:4px;
}

.privacy-check a{
    color:#d4af37;
    text-decoration:none;
    font-weight:600;
}

.privacy-check a:hover{
    color:#ffd700;
}