@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;	
	font-family: Raleway, sans-serif;
}

body {
	background:url("../img/bg-img.jpg");		
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
}

.form-label	{
	border-radius: 10px;
	min-height: 25px;
	color: #fff;
	font-weight: 400;
	margin-top: 0.5em;
}

.form-control{
	border-radius: 7px;
	min-height: 25px;
	color: #000;
	font-weight: 400;
	margin-bottom: 1em;
	min-width: 250px;
}
.btn_form	{
	background-color: #F49600;
	border-radius: 10px;
	min-height: 40px;
	width: 100px;
	border: none;
	color: #fff;
}


