* {
    box-sizing: border-box;
  }
  
  body {
    color: #ffffff;
    background: #00d2ff;
    background: -webkit-linear-gradient(to right, #3a7bd5, #00d2ff);
    background: linear-gradient(to right, #3a7bd5, #00d2ff); 
    font-family: "Poppins", sans-serif;
    height: auto;
  }

  html{
    height: auto;

  }

  #wrplogin{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 100vh;
  }

  form {
    border-radius: 8px;
    background: rgba(0,0,0,0.5);
    box-shadow: rgba(74, 79, 97, 0.1) 0px 13px 27px -5px, rgba(74, 79, 97, 0.1) 0px 8px 16px -8px;
    padding: 20px 35px 35px 35px;
    text-align: center;
    width: 40em;
    height: auto;
  }
  form i {
    color: #fff;
    font-size: 30px;
    transition: color 250ms ease-in;
  }
  form .input-wrapper {
    margin-bottom: 1em;
    position: relative;
  }
  form .input-wrapper i {
    /* color: #a4a9b6; */
    position: absolute;
    opacity: 0.85;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
  }
  side-login h1 {
    font-weight: 600;
    letter-spacing: 0;
    margin: 25px 0 0 0;
  }
  form p {
    color: #a4a9b6;
    font-size: 18px;
    margin: 2px 0 44px 0;
  }
  form input[type=email],
  form input[type=tel],
  form input[type=text],
  form input[type=number],
  form input[type=password] {
    border: 1px solid #d8ddf0;
    border-radius: 6px;
    font-size: 15px;
    padding: 13px 9px 13px 9px;
    transition: border-color 250ms ease-in;
  }
  form input[type=text] > i,
  form input[type=password] > i{
    border-color: #0C48AC;
    color: #0C48AC;
    outline: none;
  }

  .text-halo{
    color: #0C48AC;
  }
  form input {
    width: 100%;
  }
  form button[type=submit],form button[type=button] {
    background: #0C48AC;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 18px 10px;
    width: 100%;
  }

  form button[type=submit] i {
    margin-left: 5px;
  }

  .imghalo{
      width: 8em;
  }

  .placeholderimg{
    margin: 0 auto;
    height: 8em;
    width: 8em;
    border-radius: 50%;
    background-image: url("../../assets/img/noimage.png");
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #cccccc;
  }

  #infomailregister,#infonomregister,#infoprenomregister,#infopass1register
  ,#infopass2register,#infotel1register,#infousernameregister{
    visibility: hidden;
  }

/* ---------------media query----------------------------- */
  
  
@media only screen and (max-width: 800px) {


  body {
    box-sizing: border-box;
    padding: 0 !important;
    margin: 0 !important;
    display: block;
    height: auto;
    background: #00d2ff;
    background: -webkit-linear-gradient(to right, #3a7bd5, #00d2ff);
    background: linear-gradient(to right, #3a7bd5, #00d2ff); 
    box-shadow: rgba(74, 79, 97, 0.25) 0px 13px 27px -5px, rgba(74, 79, 97, 0.3) 0px 8px 16px -8px; 
  }
  html{
    box-sizing: border-box;
    padding: 0 !important;
    margin: 0 !important;
    height: auto;
    
  }
  
  #form-login{
    box-shadow:none!important;
    background:none !important ;
    width: 100%;
    height: auto!important;
    padding: 0!important;
    display: block!important;
  }

  #wrapper-sides{
    width: 100%!important;
    padding: 0!important;
  }
}



/* ------------- end media query ------------------------------ */