body {
	position:    relative;
	width:       100%;
	height:      100%;
	margin:      0;
	padding:     0;
	background:  #000000;
	font-family: Consolas, sans-serif;
}
input[type=password] {
	font-family: Pm, sans-serif !important;
}
input[type=password]::placeholder {
	font-family: Consolas, sans-serif;
}
#auth-wrapper {
	position: fixed;
	top:      0;
	left:     0;
	width:    100%;
	height:   100%;
}
#auth-wrapper .auth-container {
	position:   absolute;
	top:        45%;
	left:       50%;
	width:      360px;
	height:     240px;
	border:     1px solid #FAEF18;
	background: #ffffff;
	transform:  translate(-50%, -50%);
}
#auth-wrapper .auth-container.reg {
	height: 412px;
}
#auth-wrapper .auth-container:before {
	content:      "";
	position:     absolute;
	top:          142px;
	left:         -42px;
	border-style: solid;
	border-width: 60px 60px 0 80px;
	border-color: transparent #000000 transparent transparent;
	transform:    rotate(90deg);
}
#auth-wrapper .auth-container:after {
	content:    "";
	position:   absolute;
	top:        171px;
	left:       28px;
	width:      1px;
	height:     81px;
	background: #FAEF18;
	transform:  rotate(135deg);
}
#auth-wrapper .auth-container.reg:before {
	top: 313px;
}
#auth-wrapper .auth-container.reg:after {
	top: 342px;
}
#auth-wrapper .auth-container .header {
	width:           100%;
	height:          38px;
	display:         flex;
	justify-content: space-between;
	padding-bottom:  24px;
}
#auth-wrapper .auth-container .header .block {
	position:   relative;
	width:      24px;
	height:     24px;
	border:     6px solid white;
	background: black;
}
#auth-wrapper .auth-container .header .header-title {
	background:  black;
	color:       white;
	font-size:   28px;
	line-height: 30px;
	padding:     3px 15px;
	user-select: none;
}
#auth-wrapper .auth-container .inputs {
	text-align: center;
}
#auth-wrapper .auth-container .inputs input {
	width:         75%;
	padding:       2px 6px;
	margin:        12px 0 12px 18px;
	line-height:   26px;
	outline:       none;
	border-radius: 0;
	border:        1px solid black;
	font-family:   Consolas, sans-serif;
}
#auth-wrapper .auth-container .inputs input.err {
	border: 1px solid darkred;
	color:  red;
}
#auth-wrapper .auth-container .err-tip {
	position:    absolute;
	font-size:   10px;
	margin-left: 47px;
	color:       red;
}
#auth-wrapper .auth-container .inputs .auth-btn-wrapper {
	width:           100%;
	height:          36px;
	margin:          12px 0 0;
	display:         flex;
	justify-content: flex-end;
}
#auth-wrapper .auth-container .inputs .auth-btn-wrapper button {
	background:   #FAEF18;
	margin-right: 30px;
	padding:      0 24px;
	outline:      none;
	border:       none;
	cursor:       pointer;
	font-family:  Consolas, sans-serif;
	font-weight:  600;
	user-select:  none;
}
#auth-wrapper .auth-container .inputs .auth-btn-wrapper button:hover {
	background: #fae018;
}
#auth-wrapper .auth-container .inputs .auth-btn-wrapper button:disabled {
	background: #c0b675;
	cursor:     not-allowed;
}
