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

body{
	background-color: transparent;
	color:  rgb(250, 250, 250);
}

.input {
    background-color:transparent;
    color:  rgb(255, 253, 253);
    height:30px;
    width:260px;
}
.input:focus {
	outline:none;
	background-color:transparent;
	color:  rgb(255, 253, 253);
}

#registration-form{
	max-width: 800px;
	margin: 50px auto;
}

#registration-form .image{
	float:left;
	background-image: url("../assets/images/login/Flogin.jpg");
	height: 615px;
	width: 50%;
	background-size: cover;
	background-position: 25%;
}

#registration-form .frm{
	float:right;
	height: 615px;
    width: 50%;
    min-width: 250px;
    padding: 0 35px;
    background-size: 100% 100%;
	/*background-color: white;*/
	background-color: rgba(0, 0, 0, 0.5);
	
    
}


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

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

@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;
	}
}