/* Login Page Styles */
  .login-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #f5f4f8 100%);
    min-height: 100vh;
  }

  /* Hero Section - Vibrant Purple-Blue Gradient */
  .login-hero {
    background: linear-gradient(135deg, #143a6b 0%, #1a4f90 30%, #1e568f 60%, #143a6b 100%);
    padding-top: 110px;
    padding-bottom: 60px;
    position: relative;
  }

  .login-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(26, 79, 144, 0.2), transparent 60%),
                radial-gradient(circle at bottom right, rgba(125, 161, 76, 0.18), transparent 55%);
    z-index: 0;
    pointer-events: none;
  }

  .login-hero .container {
    position: relative;
    z-index: 2;
  }

  .login-hero-intro {
    position: relative;
    border-radius: 28px;
    padding: 2.75rem 2.5rem;
    background: linear-gradient(135deg, 
      #1A4F90 0%, 
      #2a669f 30%,
      #5f8c3b 60%,
      #7DA14C 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 24px 60px rgba(15, 12, 32, 0.6), 
                0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                0 8px 32px rgba(26, 79, 144, 0.4),
                0 4px 16px rgba(125, 161, 76, 0.3);
    height: 100%;
    overflow: hidden;
  }

  .login-hero-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }

  .login-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
  }

  .login-page .caption-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .login-page .caption-title {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .login-page .caption-text {
    color: rgba(255, 255, 255, 0.98);
    max-width: 100%;
    line-height: 1.7;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .text-white-75 {
    color: rgba(255, 255, 255, 0.75);
  }

  .breadcrumb-item a {
    color: white !important;
  }

  .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
  }

  /* Gradient Text */
  .gradient-text {
    background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    position: relative;
  }

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

  .gradient-text:hover {
    background-position: 100% 50%;
  }

  a.gradient-text {
    transition: all 0.3s ease;
  }

  a.gradient-text:hover {
    filter: brightness(1.1);
    text-decoration: underline !important;
  }

  /* Login Content Section */
  .login-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #f5f4f8 100%);
  }

  /* Login Card */
  .login-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .login-icon-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 auto;
  }

  .login-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
    border-radius: 50%;
    margin: 0 auto;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(26, 79, 144, 0.3);
  }

  .login-icon i {
    font-size: 2.5rem;
    color: white;
  }

  @keyframes pulse {
    0%, 100% { 
      transform: scale(1); 
      box-shadow: 0 8px 24px rgba(26, 79, 144, 0.3), 0 0 0 0 rgba(125, 161, 76, 0.4); 
    }
    50% { 
      transform: scale(1.05); 
      box-shadow: 0 12px 32px rgba(26, 79, 144, 0.4), 0 0 0 20px rgba(125, 161, 76, 0); 
    }
  }

  .form-control-lg {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
  }

  .form-control-lg:focus {
    border-color: #1A4F90;
    box-shadow: 0 0 0 0.2rem rgba(26, 79, 144, 0.15);
    outline: none;
  }

  /* Password Toggle */
  .password-toggle {
    position: relative;
  }

  .password-toggle-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
  }

  /* Button Enhancements */
  .btn-primary {
    background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 79, 144, 0.3);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 79, 144, 0.4);
  }

  .hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hover-lift:hover {
    transform: translateY(-3px);
  }

  /* Responsive Design */
  @media (max-width: 991px) {
    .login-hero {
      padding-top: 100px;
      padding-bottom: 50px;
    }

    .login-page .caption-title {
      font-size: 1.75rem !important;
    }

    .login-icon {
      width: 70px;
      height: 70px;
    }

    .login-icon i {
      font-size: 2rem;
    }
  }

  @media (max-width: 575px) {
    .login-hero-intro {
      padding: 2rem 1.5rem !important;
      border-radius: 20px !important;
    }

    .login-card {
      border-radius: 16px !important;
    }

    .login-card .card-body {
      padding: 2rem 1.5rem !important;
    }
  }

  /* Animation for form elements */
  .login-form-section form > div {
    animation: fadeInUp 0.5s ease forwards;
  }

  .login-form-section form > div:nth-child(1) { animation-delay: 0.1s; }
  .login-form-section form > div:nth-child(2) { animation-delay: 0.2s; }
  .login-form-section form > div:nth-child(3) { animation-delay: 0.3s; }
  .login-form-section form > div:nth-child(4) { animation-delay: 0.4s; }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }