/* ===== RESET & BASE ===== */
* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  margin: 0;
  height: 100vh;
  background-image: url("../images/bg_img.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ===== LOGIN WRAPPER ===== */
.login-wrapper {
  width: 100%;
  max-width: 620px; /* 👈 increase this */
  padding: 20px;
}

.login-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 18px;
  padding: 24px 22px;
  width: 100%;
  max-width: 620px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}


.login-content {
  max-width: 300px;
  margin: 0 auto;
}

.login-card h1 {
  color: #ffffff;
}

.login-card p {
  font-size: 14px;
  /* color: #777; */
  color: #ffffff;
}

.login-card p.text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.login-card .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.login-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== FORM GROUP ===== */
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 6px;
}

.form-control {
  height: 42px;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px 14px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

/* ===== BUTTON ===== */
button.btn {
  height: 40px;
  width: 220px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  display: block;     /* important */
  margin: 20px auto 0; /* 👈 centers horizontally */
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===== ERROR MESSAGE ===== */
#error {
  font-size: 13px;
}

/* ===== ANIMATION ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== FORGOT PASSWORD LINK ===== */
.forgot-link {
  font-size: 13px;
  font-weight: 500;
  color: #667eea;
  text-decoration: none;
  transition: color 0.2s ease;
}

.forgot-link:hover {
  color: #764ba2;
  text-decoration: underline;
}

.login-btn {
  background: linear-gradient(135deg, #4d8dff, #3b6fe8);
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 30px;
  font-size: 14px;
  display: block;
  margin: 20px auto 0;
}




.form-check-label {
  font-size: 13px;
  color: #ffffff
}

.form-check-input {
  cursor: pointer;
}

.brand-logo {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: -5px;
  margin-top: -20px;
}

.brand-logo .ng {
  color: #ffffff;
}

.brand-logo .bl {
  color: #4d8dff;
}

a {
  color: #8aa4ff;
  text-decoration: none;
}

a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.portal-title {
    white-space: nowrap;
    margin-left: -7px;
}

.login-cust{
  margin-top: 13px;
}


