:root {
	--colorBackground:rgb(230,230,230);
	--colorFront:rgb(255,255,255);
	--colorInput:rgb(235,235,235);
	--colorPrimary:rgb(33,33,33);
	--colorSecondary:rgb(69,69,69);
	--colorPost:rgb(96,96,96);
	--colorHover:rgba(0,0,0,0.07);
	--colorLoader:rgb(255,255,255);
	--width:500px;
} * {
	padding:0;
	margin:0;
	user-select:none;
	box-sizing:border-box;
	font-family:'Roboto', sans-serif;
} input, textarea, button, select {
	outline:none;
	box-shadow:none;
	min-width:0 !important;
} img {
	pointer-events:none;
} body {
	background-color:var(--colorBackground);
	overflow-x:hidden;
	min-height:100vh;
	width:100vw;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
} div#loader {
	position:fixed;
	top:0;
	left:0;
	width:100vw;
	height:100vh;
	display:flex;
	justify-content:center;
	align-items:center;
	z-index:3;
	background-color:var(--colorLoader);
} div#loader p {
	font-size:69px;
	color:transparent;
	background:linear-gradient(to right, rgb(169,0,0), rgb(0,169,0), rgb(0,0,169));
	background-size:900%;
	background-clip:text;
	animation:animcontinous 3s linear infinite alternate;
} div#background {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:-1;
	opacity:0.132;
	display:flex;
	align-items:start;
	justify-content:center;
} div#background img {
	position:absolute;
	height:100%;
	width:auto;
	top:0;
	filter:blur(132px);
} div#background img:first-child {
	left:0;
	transform:translateX(-50%) rotateY(180deg);
} div#background img:last-child {
	right:0;
	transform:translateX(50%) rotateY(180deg);
} header {
	width:var(--width);
	display:flex;
	flex-direction:column;
	margin-top:27px;
} header > img {
	height:42px;
	width:auto;
} div#servicesImg {
	display:flex;
	width:100%;
	justify-content:center;
	margin-top:18px;
} div#servicesImg a {
	padding:3px 6px;
	display:flex;
	align-items:center;
	text-decoration:none;
	border-radius:9px;
	margin:0 3px;
} div#servicesImg a:hover {
	background-color:var(--colorHover);
} div#servicesImg a img {
	height:24px;
	width:auto;
} div#servicesImg a span {
	color:var(--colorSecondary);
	margin-left:6px;
	font-size:18px;
} section {
	background-color:var(--colorFront);
	width:var(--width);
	border-radius:5px;
	padding:18px 18px;
	margin-top:50px;
} section strong {
	font-size:24px;
	display:flex;
	align-items:center;
	font-weight:normal;
	color:var(--colorPrimary);
} section form {
	margin-top:6px;
} section form h2 {
	font-size:18px;
	font-weight:normal;
	color:var(--colorSecondary);
	margin-bottom:12px;
} div.inputs {
	background-color:var(--colorInput);
	width:100%;
	border-radius:5px;
	margin-top:9px;
	display:flex;
	align-items:center;
	margin-bottom:12px;
	position:relative;
} div.inputs label {
	position:absolute;
	left:9px;
	font-size:19px;
	color:var(--colorSecondary);
	cursor:text;
	transition:0.1s all;
} div.inputs label.full {
	font-size:10px;
	transform:translateY(-12px);
} div.inputs input {
	border:none;
	width:100%;
	font-size:19px;
	padding:6px 9px;
	margin-top:12px;
	background-color:transparent;
	color:var(--colorPrimary);
} span#recoveryPass {
	position:absolute;
	background-color:var(--colorFront);
	width:31px;
	height:31px;
	right:9px;
	border-radius:50%;
	display:flex;
	justify-content:center;
	align-items:center;
	color:var(--colorSecondary);
	cursor:pointer;
	font-size:21px;
} span#recoveryPass:hover {
	color:var(--colorPrimary);
} span#recoveryPass p {
	display:none;
	bottom:calc(100% + 7px);
	right:0;
	position:absolute;
	white-space:nowrap;
	font-size:12px;
	background-color:var(--colorFront);
	padding:3px 6px;
	border-radius:9px;
	color:var(--colorPost);
} span#recoveryPass:hover p {
	display:initial;
} span#recoveryPass p::before {
	content:'';
	position:absolute;
	top:100%;
	right:10px;
	border-top:6px solid var(--colorFront);
	border-left:6px solid transparent;
	border-right:6px solid transparent;
} div#verifyPass {
	position:absolute;
	right:7px;
	background-color:var(--colorFront);
	padding:6px 9px;
	border-radius:4px;
} div#verifyPass span {
	font-size:18px;
	color:var(--colorSecondary);
} div#verifyPass span:first-child {
	margin-right:9px;
} div#verifyPass span:last-child {
	margin-left:9px;
} img#verifyUser {
	position:absolute;
	right:7px;
	background-color:var(--colorFront);
	border-radius:4px;
	height:32.8px;
	width:98.4px;
} div.buttonBetween {
	width:100%;
	display:flex;
	align-items:center;
	justify-content:space-between;
} div.buttonBetween button, button#okRecovered {
	border:none;
	font-size:18px;
	cursor:pointer;
} button#createAccount {
	background-color:transparent;
	border-radius:9px;
	padding:3px 6px;
	color:rgb(169,0,169);
} button#backRecovery, button#backRegister, button#okRecovered {
	background-color:transparent;
	border-radius:9px;
	padding:3px 6px;
	color:rgb(0,169,169);
} button#createAccount:hover, button#backRecovery:hover, button#backRegister:hover, button#okRecovered:hover {
	background-color:var(--colorHover);
} button#submitLogin, button#submitRecovery, button#submitRegister {
	background-color:var(--colorInput);
	border-radius:5px;
	padding:6px 9px;
} button#submitLogin span, button#submitRecovery span, button#submitRegister span {
	color:transparent;
	background:linear-gradient(to right, rgb(169,0,0), rgb(0,169,0), rgb(0,0,169));
	background-size:900%;
	background-clip:text;
	animation:animcontinous 5s linear infinite alternate;
} @keyframes animcontinous {
	from {background-position:0}
	to {background-position:100%}
} #recoveredForm {
	display:flex;
	flex-direction:column;
	align-items:flex-end;
} #recoveredForm h2 {
	width:100%;
} #recoveredForm p {
	width:100%;
	font-size:12px;
	padding-left:1px;
	color:var(--colorSecondary);
} #recoveredForm span {
	width:100%;
	font-size:15px;
	margin-bottom:12px;
	color:var(--colorPrimary);
} #registerForm > span {
	display:block;
	color:var(--colorSecondary);
	padding-left:3px;
	font-size:15px;
	margin-bottom:9px;
} #registerForm > span a {
	text-decoration:none;
	color:var(--colorPrimary);
} #registerForm > span a:hover {
	text-decoration:underline;
} footer {
	width:var(--width);
	display:flex;
	justify-content:space-between;
	padding:12px 18px;
	margin-top:9px;
} footer p, footer a {
	font-size:15px;
	color:var(--colorPost);
	text-decoration:none;
} footer a:hover {
	color:var(--colorSecondary);
	text-decoration:underline;
}

@media screen and (orientation: portrait) {
:root {
	--width:calc(100% - 9px);
} div#loader p {
	font-size:39px;
} div#background {
	opacity:0.09;
} div#background img:first-child {
	position:initial;
	left:auto;
	transform:translateX(0) rotateY(0deg);
} div#background img:last-child {
	display:none;
} div#servicesImg a span {
	display:none;
} footer p, footer a {
	font-size:11px;
}
}