/* =============================
   LOGIN PAGE STYLING (BOOTSTRAP)
============================= */

body {
    background: linear-gradient(to right, #0d6efd, #6f42c1);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
  }
  
  .login-container {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    animation: fadeIn 0.8s ease-in-out;
  }
  
  .login-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #0d6efd;
    font-weight: bold;
  }
  
  .form-control {
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
  }
  
  .btn-login {
    background-color: #0d6efd;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn-login:hover {
    background-color: #0b5ed7;
  }
  
  .text-center {
    text-align: center;
  }
  
  .small-text {
    font-size: 13px;
    color: #888;
    margin-top: 15px;
  }
  
  /* Fade-in animation */
  @keyframes fadeIn {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Responsive for mobile */
  @media (max-width: 576px) {
    .login-container {
      padding: 30px 20px;
    }
  }
  