@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&display=swap');


* {
	margin: 0px;
	padding: 0px;
	font-family: 'Poppins', 'sans-serif;';
}

.logo {
	position: absolute;
	width: 80px;
	height: auto;
	object-position: center;
	object-fit: scale-down;

	top: 5px;
	left: 50px;
}

.register {
	width: 100vw;
	height: auto;
	display: flex;
	justify-content: space-between;


	/*background-color: #141414;*/
}

.left {
	flex: 1;
	padding-left: 100px;
	background-color: #f6f6f6;
	box-shadow: 8px 0px 24px #14141410;
}

.left img {
	margin-top: 100px;
	object-fit: scale-down;
	object-position: right;
}

.right {
	flex: 1;
	padding-right: 150px;
}


.loginlink {
	/*margin-right: 150px;*/
	color: #324A89;

}




.right h1 {
	margin-top: 25px;
	color: #324A89;
	text-align: center;
	margin-bottom: 25px;
	font-weight: 500;
}

form {
	display: flex;
	flex-direction: column;
	align-items: center;
}


form input {
	width: 50%;
	margin-bottom: 20px;
	padding: 10px 20px;
	border: none;
	border: 1px solid #324A8950;
	border-radius: 5px;
	background-color: #f6f6f6;
	outline: none;

}

form span a {
	position: relative;
	top: -20px;
	left: 90px;
	font-size: 12px;
	text-decoration: none;
	color: #c9343f;
}

input[type='submit'] {
	padding: 10px 30px;
	margin-bottom: 5px;
	background-color: #324A89;
	color: #f6f6f6;
	border: none;
	border-radius: 5px;

}

input[type='submit']:hover {
	background-color: #fff;
	color: #324A89;
	cursor: pointer;
}

.social-buttons {
	text-align: center;
	margin-top: 25px;
}

.fa {
	padding: 15px;
	font-size: 30px;
	width: 20px;
	height: 20px;
	text-align: center;
	text-decoration: none;
	margin: 5px 2px;
	border-radius: 50%;
}

.fa:hover {
	opacity: 0.7;
}

.fa-facebook {
	background: #3B5998;
	color: white;
}

.fa-twitter {
	background: #55ACEE;
	color: white;
}

.fa-google {
	background: #dd4b39;
	color: white;
}


.hr-text {
	line-height: 1em;
	width: 75%;
	position: relative;
	outline: 0;
	border: 0;
	color: black;
	text-align: center;
	height: 1.5em;
	opacity: 0.5;
	margin: 10px auto;
}

.hr-text:before {
	content: "";
	background: linear-gradient(to right, transparent, #818078, transparent);
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 1px;
}

.hr-text:after {
	content: attr(data-content);
	position: relative;
	display: inline-block;
	color: black;
	padding: 0 0.5em;
	line-height: 1.5em;
	color: #818078;
	background-color: #fcfcfa;
}