*{box-sizing:border-box;font-family:system-ui;}
body{
  margin:0;
  background:#120A0A;
  color:#fff;
}

.login-wrapper{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.logo{
  font-size:32px;
  margin-bottom:20px;
  color:#f5c542;
}

.card{
  width:320px;
  background:#2a070d;
  padding:24px;
  border-radius:18px;
  box-shadow:0 0 25px rgba(245,197,66,.4);
}

.card h2{
  text-align:center;
  margin-bottom:16px;
}

.card input{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border-radius:12px;
  border:none;
}

.card button{
  width:100%;
  padding:12px;
  background:#f5c542;
  border:none;
  border-radius:12px;
  font-weight:700;
  cursor:pointer;
}

.error{
  color:#ff6b6b;
  font-size:14px;
  margin-bottom:10px;
  display:none;
}
