*{
    margin: 0 ;
    padding: 0 ;
    text-decoration: none !important;
    box-sizing: border-box !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.container2{
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #5a8013;
    justify-content: center;
    align-items: center;
    text-align: center;
}



.container-form{
    position: relative;
    display: flex;
    justify-content: center;
    width: 60%;
    height: 500px;
    align-items: center;
    background-color: #fff;
    box-shadow: 10px 10px 5px 5px #5a801338;
    border-radius: 10px;
}

.image-box{
    width: 45%;
    height: 100%;
    box-sizing: border-box;
    transition: all .5s ease-in-out;
}

.image-box .img{
    width: 100%;
    height: 100%;
    border-radius: 10px 0 0 10px;
    filter: brightness(.8);
    transition: .3s ease-in-out;
}

.image-box .img:hover{
    scale: 1.01;
    transform: rotate(0.5deg);
    filter: brightness(1);
}

.form{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 55%;
    height: 100%;
    transition: all .5s ease-in-out;
}

.formulario{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    align-items: center;
    text-align: center;
    transition: all .5s ease-in-out;
}

.formulario h2{
    font-size: 2rem;
    font-weight: 700;
    color: #7ea436;
    transition: all .5s ease;
}

.formulario .input-box{
    width: 80%;
    position: relative;
    display: flex;
    align-items: center;
    color: black;
    border-bottom: 2px solid #5a8013;
    margin: 10px 0 !important;
}

.formulario .input-box i{
    color: #5a8013;
}

.btnCont{
    position: relative;
    display: flex;
    align-items: center;
}

.formulario .btnCont .btn_logar{
    position: relative;
    border: 0;
    padding: 10px 45px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
    background:#7ea436;
    font-weight: 400;
    margin: 20px 0;
    transition: .3s ease-in;
}

.formulario .btnCont .btn_logar:hover{
    scale: 1.05;
}

.btnCont i{
    position: absolute;
    color: black;
    top: 10px;
    right: 0;
    transition: .4s ease-in-out;
    cursor: pointer;
    padding: 0 25px !important;
    margin: 20px 0;
}


.btnCont i:hover{
    color: #fff;
    right: -10px;
    font-size: 18px;
}

.input-box input{
    border: none;
    background: transparent;
    width: 100%;
    height: 50px;
    line-height: 1.2;
    font-weight: 500;
    color: black;
    padding: 10px;
    line-height: 2;
    font-size: 1rem;
    padding-right: 7%;
}

.input-box i{
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 0;
    align-items: center;
}

.link-new{
    position: absolute;
    bottom: 0;
    right: 20px;
}

.link-new a{
    text-decoration: none;
    color: #5a8013;
    font-weight: 500;
    transition: .2s ease-in-out;
}

.link-new a:hover{
    color: #7ea436;
}

@media (max-width: 800px){
    .container-form{
        width: 80%;
    }

    .formulario h2{
        position: absolute;
        top: 50px;
        margin:  0 20px;
    }
}

@media (max-width: 670px){
    .form{
        width: 100%;
    }
    .image-box{
        display: none;
    }
}

@media (max-width: 370px){
    .formulario .input-box{
        width: 90%;
    }
}