*{
	font-family: Interstate-Light;
}

.container{
	background-color: #f5f6f6;
}



.content{
	padding: 5px;
	display: flex;
	justify-content: center;
	
}

.step{
	width: 50vw;
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: white;
	border-radius: 10px;
	margin-top: 50px;	
	
	
}

.step .brand{
	margin-bottom: 30px;
}

.step .title{
	font-size: 20px;
	text-align: center;
	margin-bottom: 30px;
	color: #002d72;
}



form .form-group{
	display: flex;
	flex-direction: column;
	margin: 25px 0 25px 0;
	width: 40vw;
}

form label{
	font-size: 18px;
	padding: 5px 0 5px 0;
}

form input, form select{
	width: 100%;
	height: 45px;
	padding: 5px;
	font-size: 16px;
	border-radius: 10px;
	
	
}

form .submit-btn{
	background-color: #002d72;
	color: white;
	font-family: Interstate-Bold;
	cursor: pointer;
	border: 0;
	
}


.step .attachment-info{
	font-size: 14px;
}

.submit-response{
	display: none;
	margin-top: 50px;
	font-size: 18px;
	color: white;
	background-color: #002d72;
	padding: 30px;
	border-radius: 10px;
	width: 500px;
	margin: auto;
	
}


@media (max-width:768px)
{
	.header{
		padding: 5px;
	}
	
	.header img{
		height: 65px;
	}

	.step{
		width: 90vw;
		margin-top: 20px;
	}
	
	.step .title{
		font-size: 16px;
	}
	
	form .form-group{
		width: 80vw;
	}
	
	.submit-response{
		padding: 15px;
		width: 80vw;
		font-size: 16px;
	}
	
	form label{
		font-size: 14px;
	}
	
	form input, form select{
		

}