/* ============================= */
/* GLOBAL STYLE */
/* ============================= */
body {
  color: #333;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbfc 100%);
  font-family: Arial, sans-serif;
}

/* ============================= */
/* CARD DESIGN */
/* ============================= */
.card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fcfd 100%);
  border-radius: 12px;
  border: 1px solid rgba(47,102,201,0.12);
  box-shadow:
    0 10px 35px rgba(0,0,0,0.06),
    0 3px 12px rgba(47,102,201,0.08);
  overflow: hidden;
  transition: all 0.35s ease;
}

.card-body {
  color: #333;
  padding: 20px 24px;
  border-radius: 12px;

  /* Gradient background (using hover version by default) */
  background: linear-gradient(145deg, #f9fcff, #e6eef8);

  /* Stronger 3D shadow effect (hover version applied by default) */
  box-shadow:
    inset 2px 2px 6px rgba(255,255,255,0.9),
    inset -2px -2px 6px rgba(0,0,0,0.08),
    0 8px 20px rgba(0,0,0,0.12);

  transition: all 0.3s ease;
}


/* ============================= */
/* CARD HEADER (3D Background) */
/* ============================= */
.card-header {
  /* Base gradient for depth */
  background: linear-gradient(145deg, #00a3ff, #0072b2);

  /* Rounded top corners */
  border-radius: 12px 12px 0 0;

  /* 3D shadow layers */
  box-shadow:
    inset 2px 2px 6px rgba(255,255,255,0.3),   /* inner highlight (top-left light) */
    inset -2px -2px 6px rgba(0,0,0,0.25),      /* inner depth (bottom-right shadow) */
    0 6px 12px rgba(0,0,0,0.25),               /* outer shadow for lift */
    0 12px 24px rgba(0,0,0,0.15);              /* softer spread shadow */


  padding:10px;
  text-align: center;
  color: #fff;
  
  transition: all 0.3s ease;
}

/* Optional hover effect for extra dash */
.card-header:hover {
  background: linear-gradient(145deg, #0072b2, #00a3ff);
  box-shadow:
    inset 2px 2px 6px rgba(255,255,255,0.4),
    inset -2px -2px 6px rgba(0,0,0,0.3),
    0 8px 16px rgba(0,0,0,0.3),
    0 14px 28px rgba(0,0,0,0.2);
}
.card-header h4{
   margin: 0;
   padding: 0px;
   font-size:18px;
}
/* ============================= */
/* CARD TITLE */
/* ============================= */
.title-box {
  display: inline-block;
  text-align: center;
  padding: 0px 10px 5px 10px;
  border-radius: 30px;
  background: rgba(0, 198, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 198, 255, 0.35);
  box-shadow:
    0 4px 10px rgba(0,114,255,0.4),
    inset 1px 1px 3px rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

.card-title {
  text-align: center;
  margin: 0;
  padding: 0;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1.2px;
  color: #000;
  text-shadow:
    0 1px 0 #ffffff,
    0 2px 0 #cccccc,
    0 3px 0 #999999,
    0 4px 0 #666666,
    0 6px 12px rgba(0,0,0,0.8);
  transition: all 0.3s ease;
}

/* ============================= */
/* SEARCH BAR */
/* ============================= */
.search-input {
  width: 100%;
  height: 48px;
  border-radius: 30px;
  padding: 0 55px 0 20px;
  border: 1px solid #d1d9e6;
  font-size: 15px;
  background: linear-gradient(145deg, #f8fbff, #e6eef8);
  box-shadow:
    inset 2px 2px 5px rgba(255,255,255,0.9),
    inset -2px -2px 5px rgba(0,0,0,0.08),
    0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  box-shadow:
    inset 2px 2px 6px rgba(255,255,255,0.9),
    inset -2px -2px 6px rgba(0,0,0,0.12),
    0 6px 18px rgba(0,123,255,0.25);
}

.search-btn {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  height: 38px;
  width: 38px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(145deg, #00c6ff, #0072ff);
  color: #ffffff;
  font-size: 16px;
  box-shadow:
    0 4px 10px rgba(0,114,255,0.4),
    inset 1px 1px 3px rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

.search-btn:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow:
    0 6px 18px rgba(0,114,255,0.6),
    inset 1px 1px 4px rgba(255,255,255,0.5);
}

/* ============================= */
/* IMAGE STYLE */
/* ============================= */
.img-thumbnail {
  border-radius: 12px;
  border: 1px solid #dee6f5;
  background: white;
  padding: 5px;
}

/* ============================= */
/* LOGIN BOX (Outer Container)  */
/* ============================= */
.btn-box {
  display: inline-block;
  padding: 6px 8px;
  border-radius: 30px;

  background: linear-gradient(145deg, #f8fbff, #e6eef8);
  border: 1px solid #d1d9e6;

  box-shadow:
    inset 2px 2px 5px rgba(255,255,255,0.9),
    inset -2px -2px 5px rgba(0,0,0,0.08),
    0 4px 12px rgba(0,0,0,0.08);

  transition: all 0.3s ease;
}


/* ============================= */
/* LANDING BUTTON */
/* ============================= */
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 25px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  background: linear-gradient(145deg, #00c6ff, #0072ff);
  color: #ffffff;

  box-shadow:
    0 4px 10px rgba(0,114,255,0.35),
    inset 1px 1px 3px rgba(255,255,255,0.35);

  transition: all 0.25s cubic-bezier(.4,0,.2,1);
}


/* ============================= */
/* ICON SPACING */
/* ============================= */
.landing-btn i {
  margin-right: 6px;
}


/* ============================= */
/* HOVER EFFECT */
/* ============================= */
.landing-btn:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow:
    0 12px 28px rgba(0,114,255,0.35),
    0 6px 16px rgba(0,0,0,0.15);
  color: #1a2b4c;
}




/* ============================= */
/* FOCUS EFFECT (Keyboard Access) */
/* ============================= */
.landing-btn:focus {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(0,114,255,0.25),
    0 8px 20px rgba(0,114,255,0.30);
}


/* ============================= */
/* ACTIVE (Press Down Effect) */
/* ============================= */
.landing-btn:active {
  transform: translateY(0px) scale(0.98);
  box-shadow:
    inset 2px 2px 6px rgba(0,0,0,0.15),
    inset -2px -2px 6px rgba(255,255,255,0.6);
    color: #1a2b4c;
}

/* ============================= */
/* CARD FOOTER */
/* ============================= */
.card-footer {
  background: #f1f3f6;
  color: #333;
  border-top: 1px solid #d1d9e6;
  font-size: 14px;
  text-align: center;
  padding: 10px;
}
/* ============================= */
/* STANDARD & TOKEN BUTTON */
/* ============================= */
/* Standard Login Tab Button */
.standard-btn {
  background: linear-gradient(145deg, #28a745, #218838); /* green gradient */
  
  padding: 6px 16px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.standard-btn.active,
.standard-btn:hover {
  background: linear-gradient(145deg, #34d058, #28a745);
  color: #fff;
}

/* Token Login Tab Button */
.token-btn {
  background: linear-gradient(145deg, #007bff, #0056b3); /* blue gradient */
  
  padding: 6px 16px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.token-btn.active,
.token-btn:hover {
  background: linear-gradient(145deg, #3399ff, #007bff);
  color: #fff;
}

/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */
@media (max-width: 768px) {
  .card {
    border-radius: 14px;
  }

  .card-header h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .card-title {
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 1px;
  }

  .img-thumbnail {
    max-width: 100%;
  }

  .info-row {
    padding: 8px;
    font-size: 14px;
  }
}

/* ============================= */
/* EMPLOYEE INFO SECTION */
/* ============================= */
.employee-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  background: #f4f7fb;
  border: 1px solid #e0e6f1;
  flex-wrap: wrap;
}

.info-row .label {
  font-weight: 600;
  color: #2f66c9;
}

/* ============================= */
/* SECTION TITLE */
/* ============================= */
.section-title {
  text-align: center;
  font-weight: 600;
  color: #2f66c9;
}

