body{
    background-color: #36384d;
    font-family: "Roboto";
}

#container{
    background-color: white;
    display: flex;
    width: 50%;
    margin: 10% 25%;
    border-radius: 30px;
    justify-content: space-between;
    padding: 20px;
}

#info{
    margin: 0px 50px;
    width: 50%;
}
h1{
    color: #36384d;
    font-size: 60px;
}
p{
    color: #60616a;
    font-size: 16px;
}
.checklist{
    display: flex;
    align-items: center;
    padding: 0;
}
i{
    padding-right: 15px;
    color: #fe6257;
}

h3{
    display: block;
    color: #606161;
    font-size: 16px;
    margin-top: 30px;
}

input{
    display: block;
    margin: 20px 0 ;
    width: 90%;
    height: 40px;
    border: 1px solid #60616a53;
    border-radius: 5px;
    /* align-items: center; */
}
input[placeholder] {
    padding-left: 30px;
}

button{
    display: block;
    margin: 20px 0 ;
    width: 98%;
    height: 50px;
    background-color: #36384d;
    color: white;
    border-radius: 7px;
    font-weight: bold;
    font-size: 14px;
    border: none;
}
#image{
    width: 50%;
    background-image: url(illustration-sign-up-desktop.jpg);
    border-radius: 20px;
    background-size: cover;
}


@media screen  and (max-width: 800px) {
    #container{
        display: flex;
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 0;
        height: 100vh;
        flex-direction: column-reverse;
        
    }
    #info{
        margin: 30px;
        width: 90%;
    }
    #image{
        width: 100%;
        height: 500px;
        border-radius: 0;
        background-image: url(illustration-sign-up-mobile.jpg);
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;

        background-size: cover;
    }
}
