.login_bg {
    background: url('../image/Group.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
  }
  .login_bg_clr{
    background: radial-gradient(63.91% 56.66% at 50.13% 49.87%, #D0EAF4 0%, #CEE9F4 52%, #C7E6F4 70%, #BCE1F3 83%, #B8E0F3 86%, #A5D8F2 98%);
    height: 100vh;
  }
  
  .login_txt {
    font-weight: 700;
    font-size: 60px;
    line-height: 80px;
    color: #FFFFFF;
    padding: 50px;
  }
  
  .signin_google {
    background: linear-gradient(90deg, #F9B035 0%, #F98C4E 53%, #F96767 100%);
    box-shadow: 3.994px 22.651px 57px rgba(249, 103, 103, 0.259);
    font-weight: 800;
    font-size: 16px;
    color: #FFFFFF;
    border-radius: 20px;
    padding: 10px 40px;
    border: none;
    text-align: center;
    text-decoration: none !important;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 10px;
    width: 100%;
  }
  
  .signin_btn {
    background: linear-gradient(90deg, #739AFE 0%, #5CBEFF 99.99%, #D692FF 100%);
    box-shadow: 3.994px 22.651px 57px rgba(97, 73, 205, 0.259);
    font-weight: 800;
    font-size: 16px;
    color: #FFFFFF;
    border-radius: 20px;
    padding: 10px 40px;
    border: none;
    text-align: center;
    text-decoration: none !important;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 10px;
    width: 100%;
  }
  
  .signin1_txt {
    font-weight: 800;
    font-size: 30px;
    color: #000000;
    margin-bottom: 20px;
  }
  .signin2_txt{
    font-weight: 600;
  font-size: 14px;
  color: #7A86A1;
  margin-bottom:30px;
  }
  .right-inner-addon {
    position: relative;
  }
  .right-inner-addon input {
    padding-right: 45px !important;
  }
  .right-inner-addon i {
    position: absolute;
    right: 0px;
    padding: 12px 12px;
    pointer-events: none;
  }
  .form-control1 {
    border: 1px solid #EBEBEB;
    padding:10px;
    width: 100%;
    border-radius: 0 !important;
    color: #3D467B !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    border-radius: 20px !important;
  }
  
  .form-control1 input:focus{
    border: 1px solid #EBEBEB !important;
    outline: none !important;
  }
  .e_mail{
    font-weight: 700;
  font-size: 15px;
  color: #000000;
  }
  
  .forgot_pwd{
    font-weight: 600;
  font-size: 12px;
  color: #6149CD;
  cursor: pointer;
  }
  
  
  .container_cb {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .container_cb input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    border-radius: 3px;
    background-color: #eee;
  }
  .container_cb:hover input ~ .checkmark {
    background-color: #ccc;
  }
  .container_cb input:checked ~ .checkmark {
    background-color: #739AFE;
  }
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  .container_cb input:checked ~ .checkmark:after {
    display: block;
  }
  .container_cb .checkmark:after {
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .mb-6{
    margin-bottom: 6px !important;
  }
  
  
  /*---------Input Checkbox------------*/
  #check_box input[type="checkbox"]:not(:checked), 
  #check_box input[type="checkbox"]:checked {
    position: absolute;
    left: -9999%;
  }
  
  #check_box input[type="checkbox"] + label {
    display: inline-block;
    padding-top: 4px;
    text-align: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-right: 10px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #3d467b;
    color: #3d467b;
    background-color: white;
    margin-bottom: 10px;
  }
  
  #check_box input[type="checkbox"]:checked + label {
    border: 1px solid white;
    color: white;
    background-color: #5CBEFF;
  }
  .center_align{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  .mb-10{
    margin-bottom: 10px;
  }