html, p, body{
    font-family: 'Roboto', sans-serif;
    font-weight: 400; 
    margin: 0; 
    padding: 0;
}
body{
    height: 100vh;
    background: rgb(248, 239, 246);
}
h1, h2{
    font-weight: 300;
    font-size: 20px; 
    color: rgb(57, 57, 57);
}
main{
    background: rgb(248, 239, 246);
    padding: 0; 
    margin: 0;
}

header{
    height: 100px; 
    top: 0; 
    width: 100%; 
}
header img{
    height: 90px;
 }
section{
    margin: 0px auto; 
}

div.content{
    width: 80%; 
    margin: 10px auto; 
}

div.content section{
    display: flex;
}

.inside-left{
    width: 45%;
    padding: 10px; 
    padding-top: 80px
}
.inside-right{
    width: 55%;
    padding: 10px; 
    text-align:center;
}

.inside-right img{
    width: 95%;
    max-width: 500px; 
}


h1{
    font-size: 26px; 
    font-weight: 400;
    color: black;
}
p, label{
    margin: 10px 0; 
    color: rgb(78, 78, 78); 
    font-weight: 100; 
}

form{
    margin-top: 40px; 
}

input{
    height: 40px; 

}
input[type="email"]{
    width: 65%;
    text-indent: 20px; 
    font-size: 14px; 
    border: none; 
    margin-right: 0;
    border: 2px solid #856e97;
    border-radius:6px 0px 0px 6px; 
}
input[type="submit"]{
    height: 46px;
    width: 30%;
    margin-left: -6px;
    border: none; 
    border: 2px solid #856e97;
    background: #856e97;
    color: white;
    border-radius:0px 6px 6px 0px  ; 
}

input[type="submit"]:hover{
    cursor: pointer; 
}

.valid{
    color: #21d421;
}
.error{
    color: red;
}
header section {
    text-align: center
}

footer{
    margin-top: 200px; 
    padding: 10px; 
    text-align: center; 
    font-size: 10px;

}

@media screen and (max-width: 480px) {
    section {
        flex-direction: column-reverse;
        align-items: center;
    }

    header section {
        text-align: center
    }
    .inside-left{
        width: 100%;
        padding: 10px; 
        padding-top: 20px
    }
    .inside-right{
        width: 100%;
        padding: 10px; 
    }
    main{
        height: auto; 
        padding-bottom: 100px;
    }

    input[type="email"]{
        height: 55px;
        width: 100%;
        margin: 0px;
        margin-bottom: 10px; 
        border-radius: 10px;
        padding: 0;  
    }
    input[type="submit"]{
        height: 55px;
        width: 100%;
        margin-left: 0px;
        border-radius: 10px; 
        padding: 0;
    }
    footer{
        margin-top: 40px; 
    }
}

