html{
	background: url(../images/img.jpg) no-repeat center center fixed;
	background-size: cover;
}
body{
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	background-color: transparent;
}
.reg-form{
	background-color: rgba(255,255,255,0.6);
	margin: 20px auto;
	padding: 20px;
	box-shadow: 0 0 20px #000;
	border-radius: 10px;
	display: inline-block;
	width: 100%;
}
.reg-form .form-control{
	font-size: 14px;
}
.reg-form .form-control:focus{
	box-shadow: none;
	outline: 0;
}
.btn-submit, .btn-submit:hover{
	background-color: #000;
	color: #fff;
}
.success-msg{
	background-color: #fff;
	padding: 30px 20px;
	margin: 10px auto;
	border-radius: 10px;
}
.exam-area{
	background-color: #fff;
	padding: 30px 20px;
	margin: 10px auto;
	border-radius: 10px;
	display: inline-block;
	width: 100%;
}
.exam-area .timer{
	float: right;
	background-color: #000;
	color: #fff;
	font-size: 20px;	
	padding: 10px;
	border-radius: 5px;
}
.actions a:hover{
	text-decoration: none;
}