
/*========GENERAL============*/

*
{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
}

a:visited{
    color: inherit;
}

body{
    position: relative;
    background-color: #fff;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
}

body > div:first-of-type{
    width: 40%;
    min-height: 100vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body > div:first-of-type img{
    width: 200px;
    height: auto;
    margin-top: 35px;
}

body > div:first-of-type > a{
    position: absolute;
    left: 35px;
    top: 35px;
}

h1{
    font-size: 50px;
    font-weight: normal;
    color: #E76F51;
    margin-top: 35px;
}

h3{
    font-size: 30px;
    font-weight: bold;
    color: #FF0000;
    margin-top: 25px;
}

form{
    display: flex;
    flex-direction: column;
    align-items: center;
}

form > div{
    display: flex;
    flex-direction: column;
    align-items: center;
}

form > div > div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 8px;
}

form > div > div > span{
    margin-left: 5px;
    font-size: 20px;
    color: #FF3300;
}

form > div:first-of-type{
    margin-top: 35px;
}

form > div:not(:first-of-type){
    margin-top: 30px;
}

form > div input, form > div textarea{
    width: 374px;
    border: solid 2px #000;
    height: 55px;
    padding-left: 17px;
    font-size: 25px;
    color: #313131;
    border-radius: 8px;
} 

form > div input::placeholder, form > div textarea::placeholder{
    color: #7A7A7A;
}

form > div textarea{
    height: 150px;
    padding-top: 15px;
    max-width: 500px;
}

form a{
    color: #E76F51 !important;
    font-size: 20px;
    font-weight: bold;
    margin-top: 22px;
    transition: all 400ms cubic-bezier(0.4, 1.6, 0.15, 0.3);

}

form a:hover{
    color: #ff3300 !important;
}

form > span{
    display: flex;
    justify-content: center;
    position: relative;
}
form > span input{
    font-size: 35px;
    font-weight: bold;
    color: #FF3300;
    margin-top: 35px;
    border: none;
    cursor: pointer;
    background-color: transparent;
}

form > span::after{
    content: "";
    position: absolute;
    bottom: -5px;
    height: 2px;
    width: 130px;
    background: #FF3300;
    background-color: #FF3300;
    z-index: 10; 
    transition: all 400ms cubic-bezier(0.4, 1.6, 0.15, 0.9);
}

form > span:hover:after{
    width: 200px;
}

body > div:last-of-type{
    width: 60%;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(246,136,108,1) 0%,rgba(251,50,0,0.27) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

body > div:last-of-type img:first-of-type{
    margin-top: 45px;
    margin-bottom: 30px;
    width: 264px;
    height: auto;
}

body > div:last-of-type img:last-of-type{
    width: 637px;
    height: auto;
    border-radius: 100%;
}

@media (max-width: 1100px){
    body > div:last-of-type img:last-of-type{
        width: 80%;
    }
    body > div:first-of-type{
        margin-bottom: 50px;
    }
} 

@media (max-width: 985px){
    body > div:last-of-type{
        display: none;
    }
    body > div:first-of-type{
        width: 100%;
    } 
}
@media (max-width: 600px){
    body > div:first-of-type img{
        width: 45%;
        height: auto;
        margin-top: 15px;
    }
}

@media (max-width: 400px){
    form > div   input{
        width: 85%;
    }
}
