/* Employee section CSS placeholder */ 

#leave-application-form {
  max-width: 10 00px;
  margin: 48px auto;
  padding: 40px 36px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-family: 'Segoe UI', 'Arial', sans-serif;
}

.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 0;
}

.form-row label {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 1.08rem;
  color: #222;
  gap: 8px;
}

.half-width {
  flex: 1 1 0;
}

#leave-application-form input[type="text"],
#leave-application-form input[type="date"],
#leave-application-form input[type="time"],
#leave-application-form select {
  padding: 12px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 7px;
  font-size: 1.05rem;
  background: #f9fafb;
  transition: border 0.2s;
}

#leave-application-form input:focus,
#leave-application-form select:focus {
  border-color: #2563eb;
  outline: none;
}

#leave-application-form button[type="submit"] {
  margin-top: 16px;
  padding: 14px 0;
  background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(37,99,235,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}

#leave-application-form button[type="submit"]:hover {
  background: linear-gradient(90deg, #1e40af 0%, #2563eb 100%);
  box-shadow: 0 6px 20px rgba(37,99,235,0.14);
}

@media (max-width: 900px) {
  #leave-application-form {
    padding: 18px 6px;
    max-width: 98vw;
  }
  .form-row {
    flex-direction: column;
    gap: 12px;
  }
  .half-width {
    width: 100%;
  }
}

/* Modern Tasklog Login Design */
#employee-login-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
  position: relative;
  overflow: hidden;
}

#employee-login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

#employee-login-section::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Floating background elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.floating-element-1 {
  width: 60px;
  height: 60px;
  top: 20%;
  right: 15%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.floating-element-2 {
  width: 40px;
  height: 40px;
  top: 60%;
  left: 20%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.floating-element-3 {
  width: 80px;
  height: 80px;
  top: 30%;
  left: 5%;
  animation-delay: 4s;
  animation-duration: 10s;
}

.floating-element-4 {
  width: 50px;
  height: 50px;
  top: 70%;
  right: 10%;
  animation-delay: 1s;
  animation-duration: 7s;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.login-container {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  border-radius: 28px;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.2), 
    0 10px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 52px 44px;
  max-width: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.login-container:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 35px 100px rgba(0, 0, 0, 0.25), 
    0 15px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.login-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  border-radius: 24px 24px 0 0;
}

.login-header {
  text-align: center;
  margin-bottom: 40px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.logo-icon {
  font-size: 2.8rem;
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

.logo-text {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: -0.8px;
  animation: gradientShift 3s ease infinite, logoFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}

.login-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 8px 0;
  letter-spacing: -0.3px;
}

.login-subtitle {
  font-size: 1rem;
  color: #718096;
  margin: 0;
  font-weight: 400;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 4px;
}

.label-icon {
  font-size: 1.1rem;
  opacity: 0.7;
}

.form-input {
  padding: 18px 22px;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-size: 1rem;
  background: linear-gradient(145deg, #f8fafc, #ffffff);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #2d3748;
  font-weight: 500;
  position: relative;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-input:focus {
  border-color: #667eea;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  outline: none;
  box-shadow: 
    0 0 0 4px rgba(102, 126, 234, 0.15),
    0 4px 12px rgba(102, 126, 234, 0.2),
    inset 0 2px 4px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px) scale(1.02);
}

.form-input:hover:not(:focus) {
  border-color: #cbd5e0;
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  transform: translateY(-1px);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.12);
}

.form-input::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

.password-container {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input {
  padding-right: 50px;
  width: 100%;
}

.password-toggle {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-toggle:hover {
  background: #f1f5f9;
  transform: scale(1.1);
}

.eye-icon {
  font-size: 1.2rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.password-toggle:hover .eye-icon {
  opacity: 1;
}

.login-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  color: white;
  border: none;
  border-radius: 16px;
  padding: 18px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  box-shadow: 
    0 8px 25px rgba(102, 126, 234, 0.4),
    0 4px 12px rgba(118, 75, 162, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.login-button:hover::before {
  left: 100%;
}

.login-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(102, 126, 234, 0.5),
    0 8px 20px rgba(118, 75, 162, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background-position: 100% 0;
}

.login-button:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 
    0 8px 25px rgba(102, 126, 234, 0.4),
    0 4px 12px rgba(118, 75, 162, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-text {
  font-weight: 600;
}

.button-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.login-button:hover .button-icon {
  transform: translateX(4px);
}

.login-footer {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.footer-text {
  font-size: 0.9rem;
  color: #718096;
  margin: 0;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-container {
    padding: 32px 24px;
    margin: 20px;
    border-radius: 20px;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .form-input {
    padding: 14px 16px;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 24px 20px;
    margin: 10px;
  }
  
  .logo {
    gap: 8px;
  }
  
  .logo-icon {
    font-size: 2rem;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .login-title {
    font-size: 1.3rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
} 