html {
    background-color: #fbf3f3;
}

section {
    display: flex;
    height: 100vh;

}

.left-side,
.right-side {
    display: flex;
    flex-direction: column;


}

.left-side {
    flex: 1 1 40%;
    padding-left: 8vw;
    padding-right: 4vw;
}

.right-side {
    flex: 1 1 50%;
    padding-left: 4vw;
    padding-right: 8vw;
    border-left: 2px solid silver;
     
}


.contact-container{
    align-items: center;
    flex-direction: row;
}
/*FORM style*/


input {
    width: 100%;
    height: 30px;
    margin-bottom: 50px;
    outline: none;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid black;
}

.contact-container label{
    font-style: italic;
}

/*TEXT style*/

h1 {
    font-size: 9vw;
    line-height: 7.5vw;
    margin: 0;
    text-transform: uppercase;
}

h2 {
    font-size: 2.1vw;
    line-height: 2.8vw;
    font-weight: 100;
    font-style: italic;
}


em {
    font-style: oblique;
    font-weight: 500;
    padding-right: 15px;
}

.contact-infor{
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
}


.contact-container p {
    font-size: 1.4vw;
    margin: 10px 0;
    padding-right: 40px;
    font-weight: 100;
}

footer{
    margin: 0;
}

@media (max-width: 600px) {
    h1 {
        font-size: 25px;
        text-align: center;
        margin-top: 40px;
    }

    h2 {
        font-size: 16px;
        line-height: 30px;
        font-weight: 300;
        font-style: italic;
    }


    .contact-container p {
        font-size: 15px;
        text-transform: none;
    }


    .contact-container {
        flex-wrap: wrap;
        flex-direction: column;
        height: auto;
    }

    .left-side,
    .right-side {
        flex: 1 1 100%;
        padding: 40px 30px;
        border-left: none;
    }

    .left-side {
        height: auto;
        border-bottom: 2px solid black;
    }
    
    .right-side{
        width: 100%;
        
    }
    
    
    .submit-reset{
        width: 100%;
        opacity: 1;
        margin-top: 25px;
    }

}
