




/* ======================
   LOGIN PAGE
====================== */

body{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#4f46e5,#6366f1);
}

/* LOGIN CARD */
.login-card{
  background:#fff;
  width:100%;
  max-width:380px;
  padding:30px;
  border-radius:18px;
  box-shadow:0 30px 60px rgba(0,0,0,.25);
}

/* TITLE */
.login-title{
  text-align:center;
  font-size:24px;
  font-weight:800;
  margin-bottom:6px;
}

.login-subtitle{
  text-align:center;
  color:#6b7280;
  font-size:14px;
  margin-bottom:22px;
}

/* INPUTS */
.login-card input{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  margin-bottom:14px;
  font-size:14px;
}

.login-card input:focus{
  outline:none;
  border-color:#6366f1;
  box-shadow:0 0 0 3px rgba(99,102,241,.25);
}

/* BUTTON */
.login-card button{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:none;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  color:#fff;
  background:linear-gradient(135deg,#4f46e5,#6366f1);
  transition:.25s;
}

.login-card button:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 25px rgba(79,70,229,.45);
}

/* ERROR */
.login-error{
  background:#fee2e2;
  color:#991b1b;
  padding:10px;
  border-radius:10px;
  text-align:center;
  font-size:14px;
  margin-bottom:14px;
}

/* BRAND */
.login-brand{
  text-align:center;
  font-weight:800;
  font-size:18px;
  margin-bottom:4px;
}


