/*/// Full Page ///*/ 

* {
	font-family: 'Ubuntu', sans-serif;
	margin: 0px;
	padding: 0px 0px;
}

/*/// Header (background) ///*/

header.background {
	height: 100vh;
	background-image: linear-gradient(to bottom right,red,orange);
}

/*/// Header (container) ///*/

header.container {
	top: 10%;
	left: 10%;
	background-color: white;
	position: absolute;
	height: 80vh;
	width: 120vh;
	border-radius: 30px;
	box-shadow: 0px 0px 50px black;
}

/*/// Div left and right box ///*/

.left-box , .right-box {
	display: inline-table;
	height: 100%;
}

div.left-box {
	float: left;
	width: 50%;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	background-image: linear-gradient(to bottom right,red,orange);
}
div.right-box {
	float: right;
	width: 50%;
	max-width: 50%;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px; 
	background-color: white;
}

/*/// Div right-box ///*/

div.right-box-title h1.title {
	color: black;
	padding: 0px 20px;
}
div.input {
	padding: 0px 40px;
}
input {
	outline: none;
	border: transparent;
	border-bottom: 2px solid black;
	display: block;
	padding: 10px 5px;
	font-size: 20px;
}
a.button-right-box {
	font-weight: bold;
	text-decoration: none;
	color: white;
	background-image: linear-gradient(to right,red,orange);
	padding: 10px 35px;
	border-radius: 20px;
}
a.button-right-box:hover {
	transition: 0.5s ease;
	color: orange;
	background-image: none;
	background-color: black;
}
p a.link {
	text-decoration: none;
	color: black;
}
p a.link:hover {
	transition: 0.5s ease;
	font-weight: bold;
}
.facebook ,.google ,.twitter {
	height: 50px;
	width: auto;
	margin-left: 10px;
	margin-right: 10px;
	display: inline-block;
}
.rm {
	display: inline-block;
}

/*/// Div Left-box ///*/

div.left-box-title {
	top: 20%;
	left: 10%;
	position: absolute;
}
div.left-box-title h1.title {
	font-size: 50px;
	color: white;
	margin-top: 10%;
	margin-left: 5%;
}
p.left-box {
	color: white;
}
a.button-left-box {
	font-weight: bold;
	text-decoration: none;
	color: black;
	background-color: white;
	padding: 10px 35px;
	border-radius: 20px;
}
a.button-left-box:hover {
	transition: 0.5s ease;
	color: orange;
	background-image: none;
	background-color: black;
}
img.user {
	height: 100px;
	width: auto;
}