@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&subset=cyrillic&display=swap");

html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: Roboto, Arial, sans-serif;
	font-size: 16px;
	-webkit-text-size-adjust: none;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background-color: #f8f8f8;
	background-image: linear-gradient(45deg, #4158D0 0%, #C850C0 55%, #FFCC70 100%);
	overflow: hidden;
}

input {
	font-size: inherit;
	font-family: inherit;
	outline: none;
	-webkit-appearance: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active,
input:-webkit-autofill::first-line {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    font-size: inherit !important;
    font-family: inherit !important;
}

input::-webkit-textfield-decoration-container {
	visibility: hidden;
}

h1, h2, h3, h4, h5, h6, p, span, a {
	line-height: 1.5em;
}

p, span, div, input, select, textarea, a, img, ul, li, h1, h2, h3, table, tr, td, footer, nav, main {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

p {
	line-height: 1.5em;
}

a {
	color: #000;
	text-decoration: none;
	transition: ease color 0.2s, ease border-color 0.2s;
}

a:hover {
	color: rgba(0 100 170);
	transition: 0s;
}

#debugger {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 999999;
	display: none;
	height: 1000vh;
	background: linear-gradient(to bottom, grey .5px, transparent .5px);
	background-size: 8px 8px;
	pointer-events: none;
}

#debugger.active {
	display: block;
}

.login .wrap {
	padding-top: 10%;
}

.login .logo {
	display: block;
	height: 30px;
	margin: 0 auto;
	mix-blend-mode: soft-light;
	user-select: none;
}

.login .form {
	position: relative;
	width: 400px;
	margin: 31px auto 0 auto;
	padding: 21px 20px 32px 30px;
	background-color: white;
	border-radius: 5px;
	box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
}

.login h2 {
	margin: 0 0 9px 0;
	font-weight: 500;
	font-size: 17px;
	user-select: none;
	-webkit-font-smoothing: antialiased;
}

.login input[name=email],
.login input[name=password] {
	width: 340px;
	height: 40px;
	padding: 0;
	border: 1px solid #ddd;
	text-indent: 12px;
}

.login input[name=password] {
	margin-top: -1px;
}

.login input[name=email] + .login input[name=password] {
	/*background-color: red;*/
}

/*.login input[name=email]:focus,
.login input[name=password]:focus {
	border-color: #ccc;
	z-index: 1;
	position: relative;
}*/

.login input[name=submit] {
	margin: 16px 0 0 0;
	border-radius: 2px;
	border: 0;
	height: 40px;
	padding: 0 40px;
	background-color: rgb(35,90,175);
	background-color: hsl(230,60%,55%,1.0);
	color: white;
	text-align: center;
	border-radius: 3px;
	transition: ease background-color 0.3s;
}

.login input[name=submit]:hover,
.login input[name=submit]:focus {
	color: white;
	background-color: rgb(40,100,200);
	background-color: hsl(230,60%,50%,1.0);
	cursor: default;
	transition: 0s;
}

.login input[name=submit]:active {
	color: white;
	background-color: rgb(40,100,200);
	background-color: hsl(230,60%,45%,1.0);
	cursor: default;
	transition: 0s;
}

.login .password {
	position: relative;
	display: none;
}

.login .show .password {
	display: block;
}

.login .password a.remind {
	position: absolute;
	top: 12px;
	right: 10px;
	right: 20px;
	font-size: 15px;
	line-height: 1em;
	color: #999;
	border-bottom: 1px dashed #ccc;
	user-select: none;
}

.login .password a.remind:hover {
	color: hsl(230,60%,50%,1.0);
	border-bottom: 1px dashed hsl(230,60%,50%,1.0);
}

.login .password a.remind:before {
	content: "";
	top: -12px;
	right: -10px;
	position: absolute;
	width: 86px;
	height: 38px;
}

.login .tip {
	color: #999;
	margin: 8px 0 2px 1px;
	font-size: 15px;
	user-select: none;
}

.login .tip.error {
	color: #cc0000;
}

.login .tip.error + .tip {
	display: none;
}

.login .tip.remind {
	color: hsl(120 80% 25% / 1);
	display: none;
}

.login .tip.show {
	display: block;
}

.login .email input {
	border-radius: 3px;
}

.login .password input {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

.login .show .email input {
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}


/*.login input[name=submit] {
	--smooth-corners: 32,8;
	mask-image: paint(smooth-corners);
	-webkit-mask-image: paint(smooth-corners);
}

.form {
	--smooth-corners: 80,60;
	mask-image: paint(smooth-corners);
	-webkit-mask-image: paint(smooth-corners);
}*/












