/* base styling (keep your previous styles) */
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-container {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  width: 360px;
  max-width: 90%;
}

h2 {
  text-align: center;
  color: #222;
  margin-bottom: 22px;
  font-size: 22px;
}

/* inputs */
.input-group { margin-bottom: 14px; }
label { display:block; margin-bottom:6px; font-size:14px; color:#333; }
input[type="text"], input[type="password"]{
  width:100%;
  padding:11px 12px;
  border:1px solid #e0e0e0;
  border-radius:8px;
  font-size:15px;
  box-sizing:border-box;
  transition: box-shadow .12s;
}
input[type="text"]:focus, input[type="password"]:focus{
  outline:none;
  box-shadow: 0 0 0 3px rgba(42,82,152,0.08);
  border-color: #2a5298;
}

/* remember row */
.row-between{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
}
.remember{
  font-size:13px;
  color:#555;
  display:flex;
  align-items:center;
  gap:8px;
}
.remember input[type="checkbox"]{
  width:16px;
  height:16px;
  accent-color: #2a5298;
}
.forgot{
  color:#2a5298;
  text-decoration:none;
  font-size:13px;
}

/* button */
button {
  width: 100%;
  padding: 11px;
  background: #2a5298;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: transform .08s;
}
button:active { transform: translateY(1px); }
button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* small screens */
@media (max-width:420px){
  .login-container{ padding:22px; }
}
