/* RentalWorks CSS */

html, body {
	font-family: source-sans-pro,sans-serif;
	font-weight: 400;
	font-style: normal;
}
b {
	font-family: source-sans-pro, sans-serif;
	font-weight: 700;
	font-style: normal;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.white {
	width: 50%;
	float: left;
	height: 100vh;
	position: relative;
}
.white .box {
    width: 50%;
    margin-left: 25%;
    position: absolute;
	text-align: center;
	top: 50%;
  	-ms-transform: translateY(-50%);
  	transform: translateY(-50%);
}
.white .box h1,
.white .box h2 {
	color: #373e4f;
	width: 100%;
	float: left;
}
.white .box h1 img {
	width: 100%;
}
.white .box h1 {
	font-size: 50px;
}
.white .box h2 {
	margin-bottom: 25px;
}
.white .box p {
	width: 100%;
	color: #999;
}
.white .box form {
	width: 100%;
	float: left;
}
.white .box form p {
    color: #373e4f;
    font-weight: 700;
    text-align: left;
    margin-top: 25px;
    margin-bottom: 10px;
}
.white .box form p.success {
    background: #4caf50;
    padding: 20px;
    color: #fff;
    font-weight: 300;
}
.white .box form input {
    width: calc(70% - 2px);
    border: 1px solid #999;
    padding: 10px;
    border-radius: 6px;
    float: left;
}
.white .box form button {
    width: calc(30% - 5px);
    border: 0;
    float: left;
    font-size: 17px;
    padding: 7px;
    border-radius: 6px;
    margin-left: 5px;
    color: #fff;
    cursor: pointer;
    background: rgb(21,16,126);
	/*background: -moz-linear-gradient(90deg, rgba(21,16,126,1) 0%, rgba(50,129,229,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(21,16,126,1) 0%, rgba(50,129,229,1) 100%);
	background: linear-gradient(90deg, rgba(21,16,126,1) 0%, rgba(50,129,229,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#15107e",endColorstr="#3281e5",GradientType=1);*/
	background: -moz-linear-gradient(90deg, #426882 0%, #151515 100%);
	background: -webkit-linear-gradient(90deg, #426882 0%, #151515 100%);
	background: linear-gradient(90deg, #426882 0%, #151515 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#426882",endColorstr="#151515",GradientType=1);
}

.image {
	width: 50%;
	float: left;
	height: 100vh;
	background-image: url("image.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media only screen and (max-width: 900px) {
	.white {
		position: absolute;
		width: 100%;
	}
	.image {
		width: 100%;
	}
	.white .box {
		background: rgba(255,255,255,0.6);
		padding: 30px;
	}
	.white .box p {
		color: #222;
	}
}
@media only screen and (max-width: 600px) {
	.white .box {
    	width: 90%;
		margin-left: 5%;
	}
}