*{
    margin: 0;
    padding: 0;
    border: 0;
}

html, body {
    overflow-x: hidden;
}

.ladoE{
    height:100vh;
    background-image: url(/img/bg-login1.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: local;
}

.ladoD{
    height: 100vh;
    background-image: linear-gradient( to right, #00C0FF, #0051DB );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 0 20px 0 20px;
}

.box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 400px;
    max-height: 500px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 50px;
    text-align: center;
    align-items: center;
    align-content: center;
}

.box img{
    margin-bottom: 15px;
}

.box h3{
    font-size: 16px;
    font-weight: 400;
    color: #222222;
}

.box form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.box form input {
    width: 300px;
    height: 45px;
    margin-bottom: 15px;
    background-color: #ececec;
    border: none;
    font-size: 16px;
}

.sec-btns{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.btn-recuperar{
    color: #00C0FF;
    background-color: #ffffff;
}

.btn-recuperar:hover{
    color: #0051DB;
}

.btn-acessar{
    background-color: #00C0FF;
    padding: 8px 12px;
    color: #ffffff;
    border-radius: 10px;
}

.btn-acessar:hover{
    background-color: #0051DB;
    box-shadow: 0px 2px 2px #999;
}

.box p{
    margin-top: 40px;
    font-size: 13px;
}

.box p a{
    text-decoration: none;
    color: #555555;
}

/* responsivo */
@media (min-width: 320px) {
    .ladoE {
      display: none;
    }
  }