
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

    .arvo-regular {
      font-family: "Arvo", serif;
      font-weight: 400;
      font-style: normal;
    }

    .arvo-bold {
      font-family: "Arvo", serif;
      font-weight: 700;
      font-style: normal;
    }

    .arvo-regular-italic {
      font-family: "Arvo", serif;
      font-weight: 400;
      font-style: italic;
    }

    .arvo-bold-italic {
      font-family: "Arvo", serif;
      font-weight: 700;
      font-style: italic;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      /* font-family: Arial, sans-serif; */
    }

    body {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background: white;
    }

    .container {
      display: flex;
      width: 100%;
      height: 100vh;
      background: white;
    }

    .left-section {
      width: 50%;
      background: url('/images/Staff-Login.jpg') no-repeat center center/cover;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 40px;

      /* Initially hidden and positioned lower */
      opacity: 0;
      transform: translateY(100px);
      transition: opacity 1s ease-out, transform 1s ease-out;
    }

    /* When page loads, apply animation */
    .left-section.show {
      opacity: 1;
      transform: translateY(0);
    }


    .left-section img {
      width: 300px;
      margin-bottom: 10px;
    }

    .left-section h1 {
      font-size: 28px;
    }

    .left-section span {
      font-weight: bold;
      color: #e04c4c;
    }

    .right-section {
      width: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px;
    }

    .login-form {
      width: 100%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
    }

    .login-form h1 {
      color: #133152;
      margin-bottom: 10px;
      font-size: 40px;
    }

    .login-form p {
      color: #133152;
      font-size: 20px;
      margin-bottom: 20px;
    }

    .input-group {
      color: #133152;
      position: relative;
      width: 100%;
      margin-bottom: 15px;
      border-color: #133152;
    }

    .input-group input {
      width: 100%;
      padding: 10px 40px 10px 40px;
      /* Adjust padding to make space for icons */
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    .input-group i {
      color: #133152 !important;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
    }

    .input-group i.fa-lock {
      left: 10px;
      /* Lock icon at the start */
    }

    .input-group i.fa-eye {
      right: 10px;
      /* Eye icon at the end */
    }

    .input-group i.fa-eye-slash {
      right: 10px;
      /* Eye icon at the end */
    }

    .remember-me {
      color: #133152;
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .remember-me input {
      accent-color: #133152;
      /* Changes checkbox color */
    }

    .remember-me label {
      margin-left: 5px;
      font-weight: 700;
      color: #133152;
    }

    .popup {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      transition: opacity 0.3s ease, transform 0.3s ease;
      opacity: 0;
      display: none;
    }

    .login-form button {
      background: #305072;
      color: white;
      padding: 10px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
    }

    .login-form button:hover {
      background: #133152;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        height: auto;
      }

      .left-section {
        /* background: url('/images/thixproLogo.png') no-repeat center center/cover; */
        /* margin-left: 92px; */
        display: none;
      }

      /* .left-section, */
      .right-section {
        width: 100%;
        padding: 20px;
        margin-top: 62px;
      }
    }

    label {
      color: #133152;
      margin-bottom: 2px;
    }
 

 
    /* Popup Styles */
    .popup {
      display: none;
      position: fixed;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: #133152;
      color: white;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      z-index: 1000;
    }

    .popup button {
      margin-top: 10px;
      padding: 5px 10px;
      background: #ff4747;
      border: none;
      color: white;
      cursor: pointer;
      border-radius: 5px;
    }

    #remember {
      accent-color: #17518e;
      /* Dark blue */
    }

    /* Image Container */
    .contact-container {
      display: flex;
      align-items: end;
      justify-content: flex-end;
      padding: 20px;
    }

    .contact-container img {
      width: 80px;
      cursor: pointer;
      transition: transform 0.3s ease-in-out;
    }

    .contact-container img:hover {
      transform: scale(1.1);
    }

    /* Popup Overlay */
    .popup-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
    }

    /* Popup Content */
    .popup-content {
      background: white;
      padding: 20px;
      width: 90%;
      max-width: 400px;
      border-radius: 10px;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      animation: fadeIn 0.3s ease-in-out;
    }

    /* Close Button */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 20px;
      cursor: pointer;
      color: #555;
    }

    .close-btn:hover {
      color: #000;
    }

    /* Form Fields */
    input,
    textarea {

      padding: 10px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    /* Submit Button */
    button {
      background: #17518e;
      color: white;
      padding: 10px;
      width: 100%;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
    }

    button:hover {
      background: #17518e;
    }

    /* Responsive Design */
    @media (max-width: 600px) {
      .popup-content {
        width: 90%;
      }
    }

    /* Fade-in Animation */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: scale(0.8);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }
 

 
    /* Contact Image Container */
    .contact-image-container {
      display: flex;
      align-items: end;
      justify-content: flex-end;
      padding: 20px;
    }

    .contact-image-container img {
      width: 80px;
      cursor: pointer;
      transition: transform 0.3s ease-in-out;
    }

    .contact-image-container img:hover {
      transform: scale(1.1);
    }

    /* Contact Popup Overlay */
    .contact-popup-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
    }

    /* Contact Popup Content */
    .contact-popup-content {
      background: white;
      padding: 20px;
      width: 90%;
      max-width: 400px;
      border-radius: 10px;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      position: relative;
      animation: fadeIn 0.3s ease-in-out;
    }

    /* Close Button */
    .contact-close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 20px;
      cursor: pointer;
      color: #555;
    }

    .contact-close-btn:hover {
      color: #000;
    }

    /* Form Fields */
    #contactName,
    #contactEmail,
    #contactMessage {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    /* Submit Button */
    #contactSubmitBtn {
      background: #17518e;
      color: white;
      padding: 10px;
      width: 100%;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
    }

    #contactSubmitBtn:hover {
      background: #17518e;
    }

    /* Responsive Design */
    @media (max-width: 600px) {
      .contact-popup-content {
        width: 90%;
      }
    }

    /* Fade-in Animation */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: scale(0.8);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }




    /* ------------------------------------- */
    /* Fade-in effect on page load */
    .right-section {
      opacity: 0;
      transform: translateY(-20px);
      transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    }

    /* Smooth input focus effect */
    .input-group input {
      transition: 0.3s ease-in-out;
    }



    /* Shake effect for error message */
    @keyframes shake {

      0%,
      100% {
        transform: translateX(0);
      }

      25% {
        transform: translateX(-5px);
      }

      50% {
        transform: translateX(5px);
      }

      75% {
        transform: translateX(-5px);
      }
    }

    .shake {
      animation: shake 0.5s ease-in-out;
    }

    /* Smooth hover effect on button */
    button {
      transition: background-color 0.3s ease, transform 0.2s ease-in-out;
    }

    button:hover {
      background-color: #133152;
      transform: scale(1.05);
    }

    /* Eye icon toggle effect */


    /* Popup fade-in effect */
    .popup {
      opacity: 0;
      transform: scale(0.8);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
 