* {
    padding: 0;
    margin: 0;
    box-shadow: none;
}
body {
    font-size: 14px;
    font-family: lato, sans-serif;
    font-style: normal;
    font-weight: 100;
    background-color: #2CA58D;
    /* background-image: linear-gradient(62deg, #fbab7e 0%, #f7ce68 100%); */
}
main {
    max-width: 600px;
    height: 300px;
    margin: 100px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: 0 7px 6px -6px rgb(158, 158, 158);
}
#left {
    width: 50%;
    display: inline-block;
}
#left i {
    color: #5B2E48;
    margin-left: 75px;
}
#right {
    width: 50%;
    padding-right: 40px;
}

h1 {
    font-size: 35px;

    font-family: brandon-grotesque, sans-serif;
    font-style: normal;
    font-weight: 900;
}
form {
    display: flex;
    align-items: center;
    margin-top: 30px;
    
}
input {
    width: 100%;
    height: 30px;
    background: rgba(255,255,255,.1);
	border: none;
    padding: 10px;
	font-size: 15px;
    box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	background-color: #e8eeef;
	color:#8a97a0;
	box-shadow: 0 1px 0 rgba(7, 6, 0, 0.031) inset;
}
input:focus {
    outline: none;
}
button {
    height: 30px;
    width: 50%;
    color: #fff;
    background-color: #5B2E48;
    border: none;
    cursor: pointer;
    transition: ease-out 0.2s;
    -ms-transition: ease-out 0.2s;
    -o-transition: ease-out 0.2s;
    -webkit-transition: ease-out 0.2s;
    -moz-transition: ease-out 0.2s;
}
button:hover {
    color: #2CA58D;
    background-color: transparent;
}
@media only screen and (max-device-width : 850px) {
    main {
        width: 30%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
        height: 500px;
        padding: 0 50px;
    }
    section {
        
    }
    #left {
        padding: 0;
        width: 100%;
        text-align: center;
    }
    #right {
        padding: 0;
        width: 100%;
    }
    #left i {
     
        margin: 0 0 40px 0;
    }
    input {
        width: 85%;
    }
}


