*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    text-rendering: optimizeLegibility;
    font-family:Arial, Helvetica, sans-serif;
}
.main {
display: flex;    
justify-content: space-between;
}
    
.form {
    padding: 20px;
    max-width: 450px;
    width: 450px;
    height: 100%;
    position: absolute;
    z-index: 2;
    left: 100px;
}

.main2 img {
    
    right: 0;
}
.container_form{
    padding: 10px;
}
.title p{
    font-size: 3rem;
    font-weight: bold;
    font-family:Arial, Helvetica, sans-serif;
}
.inputw{
    outline: none;
   width: 100%;
    border: none;
    border-bottom: 1px solid #db3832;
    background-color: transparent;
    font-size: 17px;
    margin-top: 8px;
}
.label{
    font-size: .8rem;
    
}
.inputw:hover,
.inputw:focus{
    border-bottom: 1px solid blue;
    .label{
        border-bottom: 1px solid blue;
    }
}
.enlace{
    text-align: end;color: #006eb3; font-size: 14px;
    margin-top: 1.1rem;
    margin-bottom: 1.1rem;
    cursor: pointer;
}
.btn{
    background-color: #006eb3;
    color: #ffff;
    border-radius: 10px;
    padding: 12px 33px;
    border: none;
    font-weight: 600;
    font-size: .9rem;
}
.section2{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.mainmovile{
    display: none;
}

@media screen and (max-width:800px) {
    .form{
    position: relative;
    padding: 20px;
    width: 100%;
    height: 100%;
    
    z-index: 2;
    left: 0;
    }
    .section2{
       display: flex;
       flex-direction: column;
    }
    .section2 img{
        width: 100%;
    }
    .main2{
        display: none;
    }
    .title p{
        font-size: 1.4rem !important;
    }
    .mainmovile{
    display: flex;
    position: absolute;
    right:0;
}
}