  /* Base reset and typography */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
  }

  /* Main container */
  .container {
    display: flex;
    width: 100%;
    max-width: 950px;
    height: 550px;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: -2px 0 10px 10px rgba(0, 0, 0, 0.2);
    /* box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.2), 0px 5px 20px rgba(0, 0, 0, 0.2); */
    border-radius: 15px;
  }

  /* Left side */
  .left {
    background-color: #074790;
    color: #fff;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 50px 40px 30px 40px;
    border-radius: 15px 0px 0px 15px;
  }

  .left .logo img {
    width: 300px;
    max-width: 100%;
  }

  .left h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
  }

  .left h2 span {
    font-size: 32px;
    margin-left: 5px;
  }

  .left p {
    font-size: 14px;
    color: #e0e0e0;
    margin-top: 15px;
    line-height: 1.6;
  }

  .left .footer {
    font-size: 12px;
    text-align: center;
    color: #cbd6e1;
  }

  /* Right side */
  .right {
    position: relative;
    width: 55%;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px 0px 0px 15px;
    background-color: #fff;
  }

  .right h4 {
    font-weight: 400;
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
  }

  .right h4 span {
    color: #074790;
    font-weight: 600;
  }

  .right h2 {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
  }

  .right p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .right .credential label {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    display: block;
  }

  /* Input styling */
  .input-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }



  .input-group input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 25px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .input-group input:focus {
    border-color: #074790;
    box-shadow: 0 0 5px rgba(7, 71, 144, 0.3);
  }

  /* Remember me + button */
  .remember {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .remember input {
    accent-color: #074790;
    transform: scale(1.1);
  }

  .remember label {
    font-size: 13px;
    color: #555;
  }

  #email,
  #password:focus {
    outline: none !important;
    box-shadow: none !important;
  }


  .btn {
    background-color: #074790 !important;
    color: #fff !important;
    border: none;
    padding: 12px 0;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
    width: 36%;
  }

  .btn:focus {
    background-color: #4490e7 !important;
    outline: none !important;
    box-shadow: none !important;
  }

  /* Add this CSS block to your main stylesheet */

  .alert-danger {
    position: absolute;
    z-index: 1000;
    top: 6%;
    /* Adjust this value to position it correctly */
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centers the element horizontally */
    /* Give it a defined width so it looks right */
    /* Takes up 80% of the .right container's width */
    /* 1. Define what property to transition (e.g., opacity)
            and how long it should take (e.g., 0.5 seconds) */
    transition: opacity 0.5s ease-out;
  }

  .alert-fade-out {
    /* 2. The class we will add via JavaScript to trigger the fade */
    opacity: 0 !important;
  }

  /* .btn:hover {
    background-color: #063a78;
  } */

  /* ----------- RESPONSIVE DESIGN ----------- */

  /* Tablets and below (<= 992px) */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      height: auto;
      width: 95%;
      border-radius: 0;
      background-color: #fff;
      row-gap: 50px;
    }

    .left,
    .right {
      width: 100%;
    }

    .left {
      padding: 30px 25px;
      text-align: center;
      justify-content: flex-start;
      border-radius: 0px 0px 15px 15px !important;
    }

    .left .logo {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }

    .left .logo img {
      width: 300px;
    }

    .left h2 {
      font-size: 24px;
    }

    .left p {
      font-size: 13px;
      margin-top: 10px;
    }

    .right {
      padding: 40px 25px;
    }

    .right h2,
    h4 {
      text-align: center;
    }

  }

  /* Small mobile (<= 480px) */
  @media (max-width: 480px) {
    body {
      align-items: flex-start;
      padding-top: 20px;
    }

    .container {
      box-shadow: none;
    }

    .left {
      padding: 20px 15px;
    }

    .left .logo img {
      width: 188px;
    }

    .left h2 {
      font-size: 20px;
    }

    .left p {
      font-size: 12px;
      margin-top: 8px;
    }

    .right {
      padding: 25px 15px;
    }

    .right h2 {
      font-size: 22px;
    }

    .btn {
      font-size: 14px;
      padding: 10px 0;
    }
  }
