@import url('https://fonts.googleapis.com/css2?family=Lato&family=Montserrat&family=Open+Sans&family=Poppins&family=Roboto&display=swap');

body , html{
    font-family: "Open Sans", Sans-serif;
    height: 100%;
    width: 100%;
    margin: 0;
    display: inline-flex;
}

.full-height{
    height: 100%;
  }
  
  .div-left{
    width: 40%;
    display:block;
    position: relative;
    background: #1565C0;
  }
  
  .div-right{
    width: 60%;
    background: white;
    position: relative;
  }

  .div_left_text{
    text-align: center;
    color: white;
    position: absolute;
    width: 60%;
    top: 15%;
    right: 50%;
    transform: translate(50%, -50%);
  }
  .div_left_text h2{
    font-size: 2.2rem;
    font-weight: 700;
  }
  
  .index-div-logo{
    position: absolute;
    width: 60%;
    bottom: 0;
    right: 50%;
    transform: translate(50%, 0%);
}
  
  .index-div-logo > img {
    width: 100%;
  }
  
  .screen_center_log_in{
    top: 50%;
    right: 50%;
    width: 45%;
    height: 75%;
    margin: auto;
    padding: 80px 60px 80px 60px;
    background: linear-gradient(180deg, #151716 10%, #151716 100%);
    position: absolute;
    transform: translate(50%, -50%);
  }

  #regForm{
    text-align: center;
  }

  #regForm .logoimg img{
    width: 40%;
  }

.minput-group{
    display: flex;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 4px solid white;
}

.minput-group input{
    background: none;
    width: 100%;
    border: none;
    outline: none;
    color: white;
}

::-ms-reveal {
    filter: invert(100%);
}

.minput-group input::placeholder {
color:#bdbdbd;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0px 0px #000 inset;
  box-shadow: 0 0 0px 0px #000 inset;
  transition: background-color 5000s ease-in-out 0s;
}

.minput-group > i> img{
    width:25px; 
    height:25px;
}

#regForm a{
    text-align: left;
    display: block;
    color: #FFC107;
    text-decoration: none;
    transition: all .3s;
}

#regForm a:hover{
    color: #FF8F00;
}

#regForm button{
    position: relative;
    width: 260px;
    height: 55px;
    border: none;
    font-size: 20px;
    font-weight: 700;
    color: #009688;
    transition: all .3s;
    border-radius: .1rem;
    overflow: hidden;
}
#regForm button span{
position: relative;
font-weight: 700;
color: #009688;
}

#regForm button:hover{
    background: #009688;
}

#regForm button:hover span{
    color:white;
}

.buttonloader::before{
    content: '';
    position: absolute;
    border: none;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background: repeating-linear-gradient(45deg, #80CBC4, #80CBC4 0.75rem, #009688 0.75rem, #009688 1.4rem);
    animation: load .2s infinite linear;
}
    
  @media only screen and (max-width:1300px) {
    .screen_center_log_in{
      width: 40%;
    }
    #pop_up_index{
      width: 50%;
    }
    #pop_up_index{
      width: 60%;
      height: 60%;
    }
  }
  
  
  @media only screen and (max-width:768px) {
    body , html{
      height: 100%;
      width: 100%;
      display:block;
    }
    .div-left{
      display:none;
    }
    .div-right{
      width:100%;
      display:block;
    }
    .index-div-logo{
        padding-top: 0px;
    }
    .screen_center_log_in{
      width: 50%;
      top:0%;
      left: 0%;
      padding-top: 25px;
      transform: translate(0%, 0%);
      position: relative;
    }
    .index-bottom-div{
      position: relative;
      margin-top: 25px;
    }
    #pop_up_index{
      width: 70%;
      height: 70%;
    }
  }
  
  @media only screen and (max-width:500px) {
    .screen_center_log_in{
      width: 80%;
    }
    .form-control-solid {
      height: 3rem;
    }
    .btn_log_in{
      height: 3rem;
    }
    #pop_up_index{
      width: 90%;
      height: 90%;
    }
  }
  