/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {margin: 0; padding: 0;}

.page {
  display: flex;
  flex-wrap: wrap;
}		
			
body {
	font-family: montserrat, arial, verdana;
	vertical-align:30px;
	background-color: #E9E9E9;
}

/*form styles*/
#msform {
	margin: auto;
	text-align: center;
	position: relative;
    /* background: white;*/
    border: 0 none;
    border-radius: 3px;
    /* box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4); */
    padding: 20px 0px;
    /* box-sizing: border-box; */
    max-width: 400px !important;
}

#msform fieldset {
    padding: 10px 10px 20px 10px;
    border: 1px solid #BFBFBF;
    background-color: white;
    box-shadow: 10px 10px 5px #aaaaaa;
}
	
#msform .hvr-bounce-to-right{
padding: 10px;
margin: auto;
width: 100%;
background-color: white;
border: none;
}
	
/*inputs*/
#msform input, #msform textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 13px;
}
	
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
	
}

/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}

.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
	
a{
	color: blue;
	text-decoration: none;
	outline: none;
	cursor: pointer;
}
	
/*change overlay background for language*/
.overlay{
	background-color: rgba(0,0,0, 0.9);
}