*{
	margin: 0;
	padding: 0;
}

body{
	background-color: black;
	color: white;
	display: flex;
	flex-direction: row;
}

a{
	color: white;
}

.left_section{
	background: center no-repeat url('../imagessite/fd.jpg');
	background-size: cover;
	padding: 20px 20px;
	min-height: 100vh;
	width: 50%;
}

.left_section a{
	display: block;
	width: 200px;
	padding: 20px 0px;
	margin-right: 5px;
	text-align: center;
	font-size: 20px;
	background-color: #63B320;
	text-decoration: none;
	color: white;
	border-radius: 100px;
	font-family: 'Open Sans', sans-serif;
}

div{
	width: 100vw;
	height: 90vh;
	text-align: center;
	display: table-cell;
	vertical-align: middle;
}

.right_section{
	width: 50%;
}

.right_section form{
	margin: 20%;
	border: 3px solid white;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	padding: 20px;
}

input[type="text"], input[type="email"], input[type="date"], input[type="password"]{
	text-align: center;
	height: 50px;
	margin: 8px 0;
	border: 3px solid white;
	border-radius: 4px;
	box-sizing: border-box;
	color: white;
	background-color: black;
	font-size: 20px;
}

input[type="submit"]{
	width: 200px;
	height: 50px;
	margin-top: 40px;
	margin-left: auto;
	margin-right: auto; 
	font-size: 20px;
	background-color: #A832B3;
	color: white;
	border-radius: 100px;
	border: none;
	font-family: 'Open Sans', sans-serif;
	cursor: pointer;
}

::-webkit-input-placeholder {
   color: white;
   opacity: 0.7;
}

:-moz-placeholder { /* Firefox 18- */
   color: white; 
   opacity: 0.7; 
}

::-moz-placeholder {  /* Firefox 19+ */
   color: white;
   opacity: 0.7;  
}

:-ms-input-placeholder {  
   color: white;
   opacity: 0.7; 
}

label{
	font-size: 20px;
	text-align: left;
}