/* ========================================
   EMPLOYEE LOGIN PAGE
   ======================================== */
   
body.login-page {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Background accent */
body.login-page::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(149, 193, 31, 0.15) 0%, transparent 70%);
  z-index: 0;
}

body.login-page::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(149, 193, 31, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.login-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  text-align: center;
}

.login-logo {
  margin-bottom: 24px;
}

.login-logo img {
  height: 60px;
  object-fit: contain;
}

.login-header h1 {
  font-size: 1.75rem;
  color: #1e293b;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.login-header p {
  color: #64748b;
  font-size: 1rem;
  margin: 0 0 32px 0;
}

.login-container .form-group {
  text-align: left;
  margin-bottom: 20px;
}

.login-container .form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.login-container .form-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.login-container .form-group input:focus {
  outline: none;
  border-color: #95C11F;
  background: #fff;
  box-shadow: 0 4px 12px rgba(149, 193, 31, 0.15), 0 0 0 2px rgba(149, 193, 31, 0.2);
  transform: translateY(-2px);
}

.error-msg {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 8px;
  display: none;
  font-weight: 500;
}

.btn-login {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #95C11F 0%, #7cb51a 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(149, 193, 31, 0.3);
}

.back-link {
  display: inline-block;
  margin-top: 24px;
  color: #64748b;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #1e293b;
}

.back-link svg {
  vertical-align: middle;
  margin-right: 4px;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}
