html{
    /*background: url("../public/img/background.jpg") no-repeat;
	background-size: cover;
    min-height: 100%;*/
	background-color: #555;
}

body{
	background-color: transparent;
}

#registration-form{
	max-width: 900px;
	margin: 40px auto;
}

#registration-form .image{
	float:left;
	background-image: url("public/img/desk.jpg");
	height: 500px;
	width: 50%;
	background-size: cover;
	background-position: 25%;

}

#registration-form .frm{
	float:right;
	height: 500px;
    width: 50%;
    min-width: 250px;
    padding: 0 35px;

    background-size: 100% 100%;
    background-color: white;
}

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

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

@media screen and (min-width: 1920px){

    #registration-form{
        max-width: 1000px;
        margin: 100px auto;
    }

    #registration-form .image{
        float:left;
        background-image: url("public/img/desk.jpg");
                width: 50%;
        background-size: cover;
        background-position: 25%;

    }

    #registration-form .frm{
        float:right;
        
        width: 50%;
        min-width: 250px;
        padding: 0 35px;

        background-size: 100% 100%;
        background-color: white;
    }

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

    #registration-form .form-control{
        width: 90%;
        padding: 12px 20px;
        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;
	}
}