body.auth {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100vh;
  background:linear-gradient(135deg,#9b241c,#000);
  font-family:'Inter',sans-serif;
  margin:0;
}

.login-box {
  background:#fff;
  padding:40px 35px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  width:100%;
  max-width:400px;
  text-align:center;
}

.login-box img {
  width:80px;
  height:auto;
  margin-bottom:10px;
}

.login-box h1 {
  font-size:22px;
  margin-bottom:25px;
  color:#1e293b;
  font-weight:700;
  letter-spacing:0.3px;
}

.login-box form {
  display:flex;
  flex-direction:column;
  gap:14px;
  text-align:left;
}

.login-box label {
  font-weight:600;
  color:#334155;
  font-size:14px;
}

.login-box input[type=email],
.login-box input[type=password] {
  padding:12px 14px;
  border:1px solid #cbd5e1;
  border-radius:10px;
  font-size:15px;
  outline:none;
  transition:all .2s ease;
}

.login-box input:focus {
  border-color:#2563eb;
  box-shadow:0 0 0 3px rgba(37,99,235,0.15);
}

.login-box button {
  margin-top:10px;
  padding:12px;
  background:#9b241c;
  border:none;
  color:#fff;
  font-weight:600;
  border-radius:10px;
  font-size:15px;
  cursor:pointer;
  transition:background .2s ease;
}

.login-box button:hover {
  background:#1d4ed8;
}

.alert {
  background:#fee2e2;
  border:1px solid #fca5a5;
  color:#b91c1c;
  padding:10px;
  border-radius:8px;
  margin-bottom:15px;
  font-size:14px;
  text-align:left;
}
