*{
    padding:0; 
	margin:0; 
	box-sizing: border-box; 
	font-family:sans-serif;
	font-family: Roboto, Arial, Arial, Helvetica, sans-serif;
}
body{
	background-color: whitesmoke;
}


.navbar{
    /* border: 1px solid red; */
    background-color: white;
}
.navbar>div{
    margin-left: 15%;
    margin-bottom: 30px;
    padding: 10px;
}

.logo>h1{
    margin-top: 10px;
    font-size: 40px;
    margin-bottom: 5px;
	cursor: pointer;
}
.logo>h1>span{
    color: orangered;
   

}
.logo>p{
    line-height: 0px;
    /* margin-top: -20px; */
    font-size: 15px;
    color: gray;

}
header{
	width: 50%;
	height: auto;
	margin: auto;
	margin-top: 50px;
	font-size: 1.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	
}
.container{
	background-color: white;
	max-width: 800px;
	min-height: 500px;
	display: flex;
	justify-content:space-between;
	align-items: flex-start;
	padding: 8px 24px;
	border-radius: 5px;
}
.left{
	flex-basis: 50%;
}
.right{
	flex-basis: 50%;
}
form{
	padding: 1rem;
}

h3{
	margin-top: 16px;
	color:#535353;
	}

form input[type="text"]{
	width: 100%;
	padding: 8px 10px;
	margin: 8px 0px;
	outline: none;
}

#zip{
	display: flex;
	margin-top: 8px;
}
#zip select{
	padding: 8px 10px;
}
#zip input[type="number"]{
	padding: 8px 10px;
	margin-left: 5px;	
}
.btn{
	/* width: 100%; */
	padding: 15px 20px;
	background-color:rgb(255, 88, 27);
	color: white;
	border: none;
	outline: none;
	margin-top: 16px;
	cursor: pointer;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 600;
}

.btn:hover{
	background: rgb(249, 69, 3);
}


@media only screen and (max-width: 770px){
	.container{
		flex-direction: column;
	}
	body{
		overflow-x: hidden;
	}
}

