*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.container-login{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    
}

.img-box{
    width: 0%;
    height: 20%;
    padding: 230px;
}

.img-box img{ 
    width: 100%;
    height: 100%;
}

.content-box{
   display: flex;
   justify-content: center;
   align-items: center;
   width: 50%;
   height: 100%;

}

.container-box .form-box{
     width: 50%;

}

.content-box .form-box .ul{
      display: flex;
      align-items: center;
      justify-content: center;
      

}

.content-box .form-box .ul li{
    list-style: none;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 7px;
    cursor: pointer;
    transition: 0.3s;

}

h2{
    color: rgb(5, 77, 5);
    font-weight: 600;
    font-size: 2em;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
 
}

.container-box .form-box{
  margin-bottom: 20px;

}

#acesso{
    width: 100%;
    padding: 10px;
    outline: none;
    font-weight: 400;
    border: none;
     font-size: 17px;
     color: #32324f;
     background-color: #ecf2f7;
     border-radius: 15px;
}

     #campoCpf{
        width: 100%;
        padding: 10px;
        outline: none;
        font-weight: 400;
        border: none;
         font-size: 17px;
         color: #32324f;
         background-color: #ecf2f7;
         border-radius: 15px;
    }


span{
    font-size: 16px;
    margin-bottom: 5px;
    display: inline-block;
    color: #32324f;
    font-weight: 400;

}

.container-box .form-box .input-box input::placeholder{

color: #a9adb6;

}

input[type=submit]{

  background: #00a859;
  color: #fff;
  outline: none;
  border: none;
  font-weight: 900;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
  padding: 5px;
  border-radius: 10px;
  width: 100%;

}

@media (max-width:868px) {
    .container-login .img-box{
        display: none;
    }
    .container-login .content-box{
        width: 100%;
    }
    .container-login .content-box .form-box{
        width: 100%;
        padding: 40px;
        background: white;
        margin: 50px;
    } 
    .container-login .content-box .form-box h3{
        margin: 30px 0 10px;
    } 
}
@media (max-width:450px) {
    .container-login .content-box .form-box .remember{
        flex-wrap: wrap;
    }
    .container-login .content-box .form-box .remember a{
        margin-top: 20px;
    }
    
}
