/*html{
	background: url("../images/background.jpg") no-repeat;
	background-size: cover;
	min-height: 100%;
}*/

body{
	background-color: transparent;
	height: 100Vh;
	position: relative;
	display: flex;
	align-items: center;
	background: url(../images/background.jpg) no-repeat;
	background-size: cover;
}

.mb-3 {margin-bottom: 25px;}

#registration-form{
    max-width: 800px;
    padding-top: 120px;
    padding-bottom: 120px;
    float: none;
    min-height: 100%;
}

#registration-form .image{
	float:left;
	background-image: url("../images/desk.jpg");
	height: 360px;
	width: 45%;
	background-size: cover;
	background-position: 25%;
}

#registration-form .frm{
	float:right;
	height: 360px;
    width: 55%;
    min-width: 250px;
    padding: 0 25px;
    background-size: 100% 100%;
	background-color: rgba(0, 0, 0, 0.5);;
}

#registration-form h1{
	margin-top: 30px;
	margin-bottom: 20px;
	color: white;
}

#registration-form .form-control{
	width: 100%;
	padding: 12px 15px;
	height: auto;
}

@media (max-width: 768px) {
	body {
		display: block;
		background-size: auto 100%;
	}
	#registration-form{
		padding-top: 50px;
		padding-bottom: 50px;
	}
}
@media screen and (max-width: 700px){
	#registration-form .image{
		width: 30%;
	    background-position: 60%;
	}

	#registration-form .frm{
		width: 70%;
	}

	#registration-form .form-control{
		width: 100%;
	}
}

@media screen and (max-width: 500px){
	#registration-form .image{
		display: none;
	}

	#registration-form .frm{
		width: 100%;
	}

	#registration-form h1{
		text-align: center;
	}

	#registration-form .btn{
		width: 100%;
		margin-top: 20px;
	}
}