.left-col {
    width: 55%;
    gap: 30px;
    padding: 200px;
    background: #f4f4f4;
  }
  /* @media screen and (min-height: 870px) {
    .left-col {
      padding: 300px;
    }
  } */
  .content-container {
    gap: 30px;
  }
  .company-name {
    color: #222;
    font-family: Poppins;
    font-size: 44.776px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .company-moto {
    color: #0085ff;
    text-align: center;
    font-family: Poppins;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0px;
  }
  .right-col {
    width: 45%;
    padding: 100px 160px;
    gap: 30px;
  }
  
  @media screen and (max-width: 1700px) {
    .right-col {
      padding: 100px 130px;
    }
  }
  @media screen and (max-width: 1500px) {
    .right-col {
      padding: 80px 80px;
    }
  }
  @media screen and (max-width: 1300px) {
    .right-col {
      padding: 40px 60pxpx;
    }
  }
  
  .page-name {
    color: #0085ff;
    font-family: Poppins;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .input-container {
    gap: 10px;
  }
  .input-container input {
    display: flex;
    padding: 20px;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 20px;
    border: 1px solid #dbe2ee;
    background: #fafafa;
    color: #999;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }
  .custom-input-container {
    gap: 10px;
  }
  .password-container {
    position: relative;
  }
  .password-container i {
    position: absolute;
    right: 3%;
    top: 30%;
    cursor: pointer;
  }
  .custom-form-check-box {
    display: flex;
    width: 22px;
    height: 22px;
    padding: 5.5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5.5px;
    border: 0.733px solid #dbe2ee;
    background: rgba(249, 249, 249, 0.15);
  }
  .form-check-input[type="checkbox"] {
    border-radius: 5.5px;
    margin-top: 0;
  }
  
  .form-check-input:focus {
    border: 1px solid #0085ff;
    box-shadow: none;
  }
  .form-control:focus {
    box-shadow: none;
    border: 1px solid #0085ff;
  }
  .r-pass {
    color: #222;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }
  .f-pass {
    color: var(--primary, #0085ff);
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    cursor: pointer;
  }
  .f-pass:hover {
    text-decoration: underline;
  }
  .btn-login {
    display: flex;
    height: 70px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 50px;
    border: 1px solid #0085ff;
    color: #0085ff;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .btn-login:hover {
    background: rgba(0, 133, 255, 0.15);
    color: #0085ff;
  }
  
  .btn-login:focus {
    background: #0085ff;
    color: #fff;
    box-shadow: none;
  }
  
  /* mail */
  .message-mail {
    color: #000;
    font-family: Poppins;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .message-mail span {
    color: var(--Green, #00b332);
    font-family: Poppins;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  /* process intiated */
  .process-image {
    width: 240px;
    height: 238.957px;
    flex-shrink: 0;
    /* background: url(/assest/images/process.gif) lightgray 50% / cover no-repeat; */
  }

  #loader {
    display: none; /* Hide loader initially */
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    border-radius: 5px;
    z-index: 9999;
    text-align: center;
}