 /* Styles for screens larger than 13.3 inches or in landscape mode */
    @media (min-width: 13.3in) and (orientation: landscape) {
      body {
        display: none; /* Hide the website content */
      }
    }

    /* Styles for screens larger than 13.3 inches in landscape mode */
    @media (min-width: 13.3in) and (orientation: landscape) and (max-height: 13.3in) {
      body {
        display: none; /* Hide the website content */
      }
    }


@media (max-width: 13.3in), (orientation: portrait) {
 body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #EAE8E8 no-repeat center center fixed;
    background-size: cover;
  }
}
  #topBar {
    background: #FFFFFF;
  }
  #logoTitle {
    display: flex;
    align-items: center;
    padding: 0px;
  }
  #logoTitle img {
    width: 83px;
    height: 61px;
    padding-left: 5px;
  }
  #logoTitle h2 {
    color: #00A1FE;
   
    font-weight: bold;
    padding-top: 0px;
    padding-left: 5px;
  }
  #loginForm {
    background: #fff;
    margin: 16px;
    padding: 16px;
  }
  #loginTitle {
    font-size: 20px;
    font-weight: bold;
  }
  #loginDescription {
    font-size: 14px;
    margin-top: 8px;
  }
  .selecttag {
    width: 100%;
    padding: 12px;
    margin-top: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
  }
  input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-top: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
  }
  button {
    width: 49%;
    padding: 10px;
    margin-top: 16px;
    background-color: #194FBC;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box; /* Ensure padding doesn't affect width */
  }

  button:hover {
    background-color: #0f3a93;
  }
  .forgotPassword {
    font-size: 16px;
    color: #0069d9;
    margin-top: 8px;
    margin-bottom: 16px;
  }
  .registerText {
    margin-top: 16px;
  }
  .copyright, .poweredBy {
    font-size: 10px;
    color: #000;
    padding: 0 10px;
  }
  .poweredBy {
    color: #0069d9;
  }

  .highlight {
    border: 2px solid red !important;
  }
  .password-container {
    position: relative;
  }
  .password-container .toggle-password {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }