/* CSS Document */

@font-face {
	font-family: 'SFProText';
	src: url('/fonts/SFProText/SFProText-Light.woff2') format('woff2'), url('/fonts/SFProText/SFProText-Light.woff') format('woff');
	font-weight: 200;
	font-style: normal;
}

@font-face {
	font-family: 'SFProText';
	src: url('/fonts/SFProText/SFProText-Medium.woff2') format('woff2'), url('/fonts/SFProText/SFProText-Medium.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'SFProText';
	src: url('/fonts/SFProText/SFProText-Semibold.woff2') format('woff2'), url('/fonts/SFProText/SFProText-Semibold.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

html {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	font-family: 'SFProText';
	font-weight: 200;
	font-style: normal;
}

body {
	margin: 0;
	padding: 0;
	/*
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 360s ease infinite;*/
}

.container {
	display: flex;
	height: 100vh;
}

.left {
	position: relative;
	flex-basis: 33.33%;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 100px;
}

.right {
	flex-basis: 66.67%;
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	/*animation: gradient 360s ease infinite;*/
	display: flex;
	justify-content: center;
	align-items: center;
	
	background-position: bottom 50% right 50%;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

form {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 5px;
	padding: 40px;
}

input[type="text"], input[type="password"] {
	padding: 10px;
	margin: 10px 0;
	border-radius: 5px;
	border: 1px solid #ddd;
	/*box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);*/
	font-size: 28px;
	width: 200px;
	text-align: center;
	font-family: inherit;
	background: transparent;
}

input[type=submit] {
	padding: 12px 20px;
	background-color: #000;
	color: #fff;
	border: 1px solid #000;
	border-radius: 5px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 400;
	width: 220px;
	margin-top: 30px;
}

input[type=submit]:hover {
	background-color: #fff;
	border: 1px solid #000;
	color: #000;
	transition: 0.2s;
}

label {
	font-family: 'SFProText';
	font-weight: 200;
	font-style: normal;
	color: #000;
	font-size: 14px;
	margin-top: 14px;
}

label img {
	width: 100px;
	height: auto;
	margin-bottom: 50px;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px white inset !important;
	border: 1px solid #ddd;
	font-size: 28px !important;
}

input:focus {
	outline: none;
}

.footer {
	position: absolute;
	width: 100%;
	bottom: 30px;
	left: 0;
	font-size: 11px;
	text-align: center;
	font-weight: 200;
	font-style: normal;
	color: #777;
}

.notification {
	width: 100%;
	color: #D40003;
	font-weight: 300;
	text-align: center;
	font-size: 14px;
	padding-top: 20px;
	visibility: hidden;
}