/* Header */
html {
      height: 100%;
}
img.project-title-icon {
      height: 42px;
  }
body {
      height: 100%;
      width: 100%;
      overflow: hidden;
      font-family: "Inter", sans-serif;
      display: flex;
      margin: 0px;
      font-weight: 300;
      font-style: normal;
}
.poppins-thin {
      font-family: "Poppins", serif;
      font-weight: 100;
      font-style: normal;
}

.poppins-extralight {
      font-family: "Poppins", serif;
      font-weight: 200;
      font-style: normal;
}

.poppins-light {
      font-family: "Poppins", serif;
      font-weight: 300;
      font-style: normal;
}

.poppins-regular {
      font-family: "Poppins", serif;
      font-weight: 400;
      font-style: normal;
}

.poppins-medium {
      font-family: "Poppins", serif;
      font-weight: 500;
      font-style: normal;
}

.poppins-semibold {
      font-family: "Poppins", serif;
      font-weight: 600;
      font-style: normal;
}

.poppins-bold {
      font-family: "Poppins", serif;
      font-weight: 700;
      font-style: normal;
}

.poppins-extrabold {
      font-family: "Poppins", serif;
      font-weight: 800;
      font-style: normal;
}

.poppins-black {
      font-family: "Poppins", serif;
      font-weight: 900;
      font-style: normal;
}

.poppins-thin-italic {
      font-family: "Poppins", serif;
      font-weight: 100;
      font-style: italic;
}

.poppins-extralight-italic {
      font-family: "Poppins", serif;
      font-weight: 200;
      font-style: italic;
}

.poppins-light-italic {
      font-family: "Poppins", serif;
      font-weight: 300;
      font-style: italic;
}

.poppins-regular-italic {
      font-family: "Poppins", serif;
      font-weight: 400;
      font-style: italic;
}

.poppins-medium-italic {
      font-family: "Poppins", serif;
      font-weight: 500;
      font-style: italic;
}

.poppins-semibold-italic {
      font-family: "Poppins", serif;
      font-weight: 600;
      font-style: italic;
}

.poppins-bold-italic {
      font-family: "Poppins", serif;
      font-weight: 700;
      font-style: italic;
}

.poppins-extrabold-italic {
      font-family: "Poppins", serif;
      font-weight: 800;
      font-style: italic;
}

.poppins-black-italic {
      font-family: "Poppins", serif;
      font-weight: 900;
      font-style: italic;
}

.header {
      display: flex;
      justify-content: space-between;
      height: 13%;
      width: 100%;
      align-items: center;
      background-color: #eb6b0d;
      max-height: 44px;
}

.header-left {
      align-items: center;
      display: flex;
}
.header-logo {
      margin: 10px;
      height: 30px;
}
.header-center {
      font-size: 14px;
      color: white;
}
.header-right a {
      text-decoration: none;
}
.header-right img {
      height: 17px;
      margin-right: 30px;
}
/* Dropdown Container */
.dropdown {
      position: relative;
      display: inline-block;
}

/* Dropdown Toggle (User Icon) */
.dropdown-toggle {
      cursor: pointer;
}

/* Dropdown Menu */
.dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      background-color: white;
      box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
      z-index: 1;
      min-width: 150px;
      padding: 10px 0;
      border-radius: 4px;
}

/* Dropdown Menu Item */
.dropdown-item {
      display: block;
      padding: 8px 16px;
      text-decoration: none;
      color: #333;
      font-size: 14px;
}

.dropdown-item:hover {
      background-color: #f0f0f0;
      color: #000;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
      display: block;
}

.left-section {
      width: 50%;
      color: white;
      padding: 150px 0px;
      /* align-items: flex-start; */
      justify-content: center;
      display: flex;
      flex-direction: column;
      font-weight: 300;
      border-radius: 14px;
      background-color: #424242;
}

.left-header {
      /* top: 0px; */
      display: flex;
      justify-content: center;
      margin: 35px;
      /* font-size: 20px; */
      position: absolute;
      margin-top: 450px;
}

.left-title {
      width: 456px;
      margin: 10px auto;
      font-weight: 200;
      font-size: 42px;
      line-height: 50px;
      align-items: center;
      text-align: center;
}

.error-message {
      background-color: #f44336; /* Red background */
      color: white;
      padding: 20px;
      border-radius: 5px;
      position: absolute; /* Absolute positioning for animation */
      top: -100px; /* Initially hidden above the viewport */
      left: 50%;
      transform: translateX(-50%); /* Center horizontally */
      opacity: 0; /* Initially transparent */
      transition: opacity 0.5s ease, top 0.5s ease; /* Smooth transitions */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.error-message .show {
      top: 20px; /* Slide down to this position */
      opacity: 1; /* Become visible */
}

/* Optional: Add a close button */
.error-message .close-btn {
      color: white;
      margin-left: auto;
      cursor: pointer;
}
.left-body {
      width: 430px;
      margin: 10px auto;
      font-weight: lighter;
      font-size: 18px;
      line-height: 31px;
      text-align: center;
}

.right-section {
      width: 50%;
}

.logo-title-container {
      width: 251px;
      margin: 10px auto;
      /* font-weight: 100; */
      font-size: 25px;
      line-height: 31px;
}

.title-Container {
}

.messages {
}

.form-group {
      gap: 0px;
      display: flex;
      flex-direction: column;
      width: 100%;
      justify-content: center; /* align-items: center; */
}

.form-group__label {
      font-size: 12px;
      color: #666666;
      font-weight: 400;
}

.Input-Container {
      display: flex;
      flex-direction: column;
}

.form-group__input {
      border-radius: 5px;
      border: 1px solid #66666635;
      padding: 10px;
      /* width: 100%; */
}

.Email-Password-Icon {
      display: none;
}

.Email-Icon {
}

.Password-Icon {
}

.password-hints {
      font-size: 7px;
      color: #666666;
      display: inline-block;
      font-weight: 400;
      line-height: 16px;
      margin: 5px;
}

.terms-hints {
      color: #666666;
      font-size: 10px;
      width: 71%;
      line-height: 16px;
      font-weight: 400;
}

.form-group__button {
      background-color: #eb6b0d;
      color: white;
      border-radius: 100px;
      padding: 10px 0px;
      margin-top: 12px;
      border: none; /* width: 91px; */
}

.auth-form-container {
      font-weight: 100;
      font-size: 25px;
      line-height: 31px;
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 100%;
      justify-content: center;
      align-items: center;
}

.toggle-signup-login {
      color: #666666;
      font-size: 10px;
      text-align: center;
      font-weight: 400;
}
.header-app-name .app-name-link {
      color: white; /* Text color */
      text-decoration: none; /* Remove underline */
      font-size: 18px;
}

.header-app-name .app-name-link:hover,
.header-app-name .app-name-link:focus {
      color: white; /* Ensure it stays white on hover and focus */
      text-decoration: none; /* No underline on hover */
}
.loader {
      width: 50px;
      aspect-ratio: 1;
      border-radius: 50%;
      border: 8px solid #f06d0c;
      animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
      0% {
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
      }
      12.5% {
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
      }
      25% {
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
      }
      50% {
            clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
      }
      62.5% {
            clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
      }
      75% {
            clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
      }
      100% {
            clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
      }
}
@keyframes l20-2 {
      0% {
            transform: scaleY(1) rotate(0deg);
      }
      49.99% {
            transform: scaleY(1) rotate(135deg);
      }
      50% {
            transform: scaleY(-1) rotate(0deg);
      }
      100% {
            transform: scaleY(-1) rotate(-135deg);
      }
}
.x-icon {
      height: 1em;
      width: 1em;
      top: .125em;
      position: relative;
    }
    .x-alt {
      color: #777;
    }

    button.bsk-btn.bsk-btn-default {
      color: white;
      border: none;
      padding: 10px;
      background-color: #424242;
      width: 100%;
      cursor: pointer;
  }
  
  object.x-icon {
  }

/* Separator */
.separator {
      text-align: center;
      margin: 1rem 0;
      position: relative;
      font-size: 11px;
    }
    
    .separator span {
      background-color: #fff;
      padding: 0 1rem;
      color: #666666;
    }
    
    .separator::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      width: calc(50% - 15px);
      height: 1px;
      background-color: #ccc;
    }
    
    .separator::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 0;
      width: calc(50% - 15px);
      height: 1px;
      background-color: #ccc;
    }  


































  .container {
      background: white;
      width: 400px;
      margin: 0px auto;
      padding: 30px;
      border-radius: 23px;
      box-shadow: 0px 4px 10px rgb(0 0 0 / 20%);
  }
  
  .logo {
      width: 150px;
      margin-bottom: 10px;
  }
  
  h2 {
      /* font-size: 22px; */
      color: #222;
      text-align: center;
      font-weight: 100;
  }
  
  .subtext {
      font-size: 14px;
      color: #555;
      text-align: center;
  }
  
  .subtext a {
      color: #0078D4;
      text-decoration: none;
  }
  
  .signin-btn {
      background-color: #f06d0c;
      color: white;
      border: none;
      padding: 10px 15px;
      font-size: 16px;
      width: 100%;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 15px;
      transition: background-color 0.3s ease;
  }
  
  .signin-btn:hover {
      background-color: #de640a;
  }
  
  .admin-text {
      font-size: 13px;
      color: #666;
      margin-top: 15px;
      text-align: center;
  }
  
  .footer {
      font-size: 12px;
      margin-top: 20px;
  }
  
  .footer a {
      color: #0078D4;
      text-decoration: none;
  }
  strong{
      
color: #f06d0c;
  }