body {
  background: linear-gradient(160deg, #03122b 0%, #0b3a8a 55%, #0a58ca 100%);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 20px;
}

.card-login {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  max-width: 500px;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.login-stripe {
  height: 5px;
  background: linear-gradient(180deg, #0b5ed7, #0a58ca);
}

.login-inner {
  padding: 2rem 2.2rem 1.6rem;
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 1.4rem;
}

.login-brand-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: linear-gradient(180deg, #0b5ed7, #0a58ca);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.login-brand-icon i {
  font-size: 1.3rem;
  color: #fff;
}

.login-brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d1b3e;
  margin: 0;
}

.login-brand-sub {
  font-size: 0.75rem;
  color: #7a8aaa;
  margin: 0;
  font-weight: 500;
}

.login-divider {
  height: 1px;
  background: #eef1f7;
  margin-bottom: 1.3rem;
}

.login-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0d1b3e;
  margin: 0 0 3px;
}

.login-subheading {
  font-size: 0.8rem;
  color: #7a8aaa;
  margin: 0 0 1.5rem;
}

.form-label-custom {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #3d4f6e;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.form-label-custom i { color: #0b5ed7; }

.form-control-custom {
  width: 100%;
  border: 1.5px solid #dde3f0;
  border-radius: 10px;
  background: #f7f9fc;
  padding: 11px 14px;
  font-size: 0.9rem;
  color: #0d1b3e;
  outline: none;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  box-sizing: border-box;
}
.form-renitialiser{
	width: 95%;
}

.form-control-custom::placeholder { color: #b0bccf; }

.form-control-custom:focus {
  border-color: #0b5ed7;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(11,94,215,0.10);
}

.forgot-password-link {
  font-size: 0.75rem;
  font-weight: 500;
  color: #0b5ed7;
  text-decoration: none;
}
.forgot-password-link:hover { text-decoration: underline; }

.btn-login {
  width: 100%;
  padding: 13px;
  background: linear-gradient(180deg, #0b5ed7, #0a58ca);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(11,94,215,0.30);
  margin-top: 1.2rem;
}

.btn-renitialiser{
	width: 95%;
}

.btn-login:hover {
  opacity: 0.93;
  transform: translateY(-1px);
  box-shadow: 0 7px 20px rgba(11,94,215,0.38);
}

.btn-login:active { transform: translateY(0); }

.login-footer {
  padding: 10px 2.2rem 13px;
  border-top: 1px solid #f0f3f9;
  text-align: center;
  font-size: 0.75rem;
  color: #aab4c8;
}

@media (max-width: 576px) {
  .login-inner { padding: 1.5rem 1.4rem 1.2rem; }
  .login-heading { font-size: 1.1rem; }
}