/* ===== Particles background layer ===== */
#particles-js{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url("../img/bg-login.png"); */
  background-color: #0d3c72;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: 1;
  pointer-events: none;
}

#particles-js canvas{
  /* display: block; */
  display: inline-block;
  vertical-align: bottom;
}

.login-page { 
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.login-box  { 
  position: relative; 
  z-index: 2;
  margin: 0 auto;
}

/* ===== Footer ===== */
.login-footer {
  position: fixed;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  /* color: white; */
  z-index: 2;
  color: rgba(255,255,255,0.7);
  margin-top: 20px;
}

.login-footer .footer-link {
  color: #fff;
  text-decoration: underline;
  margin: 0 3px;
}

.login-footer .footer-link:hover {
  color: #ffd700;
}

.footer-lang {
  display: block;
  margin-top: 3px;
}

/* ===== Konten ===== */
  /* Login container wrapper */
  .login-box-enhanced {
    width: 420px !important;
    max-width: 95%;
  }
  
  .login-logo {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    display: block;
  }
  
  .login-logo a {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 300;
    font-size: 2rem;
    display: block;
    line-height: 1.3;
    text-decoration: none;
    width: 100%;
    text-align: center;
  }
  
  /* CV text styling - Yellow/Gold */
  .cv-text {
    color: #ffc107 !important;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    display: inline;
  }
  
  /* Company name styling - White */
  .company-name {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    letter-spacing: 0.5px;
    display: inline;
  }
  
  .login-box .card {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    width: 100%;
  }
  
  .login-card-body {
    padding: 2rem !important;
  }
  
  .login-box-msg {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #495057;
    font-weight: 500;
    text-align: center;
  }

  /*input field - Larger */
  .form-control-lg {
    height: calc(2.5rem + 2px);
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    border-radius: 8px 0 0 8px !important;
  }
  
  .form-control {
    border-radius: 8px 0 0 8px !important;
  }
  
  .input-group-text {
    border-radius: 0 8px 8px 0 !important;
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
  }
  
  .input-group-lg .input-group-text {
    height: calc(2.5rem + 2px);
  }

  /* Tombol Proses - Larger */
  .btn-warning {
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
  }
  
  .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    background-color: #e0a800;
  }
  
  .btn-warning:active {
    transform: translateY(0);
  }

.login-card-body a {
  transition: all 0.3s ease;
  color: #007bff;
}

.login-card-body a:hover {
  color: #0056b3;
  text-decoration: none;
}

.login-box .card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
}

/* Tampilan Mobile */
@media (max-width: 576px) {
  .login-page {
    align-items: center;
    padding: 20px 0;
  }

  .login-box-enhanced {
    width: 90% !important;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .login-logo {
    margin-bottom: 1.5rem;
  }
  
  .login-logo a {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  
  .cv-text,
  .company-name {
    font-size: 1.3rem;
    letter-spacing: 0.3px;
  }
  
  .login-card-body {
    padding: 1.5rem !important;
  }
  
  .form-control-lg {
    font-size: 1rem;
    height: calc(2.25rem + 2px);
  }
  
  .btn-warning {
    font-size: 1rem;
    padding: 0.65rem 1rem;
  }

  .login-footer {
    position: fixed;
    bottom: 10px;
  }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 768px) {
  .login-box-enhanced {
    width: 400px !important;
  }
  
  .cv-text,
  .company-name {
    font-size: 1.6rem;
  }
}

/* Large Desktop - Extra centering */
@media (min-width: 1200px) {
  .login-page {
    padding: 0;
  }
  
  .cv-text,
  .company-name {
    font-size: 2rem;
  }
}