@charset "utf-8";
/* CSS Document */
:root{
	--main: #5F7635;
	--secon01: #777;
	--secon02: #AAA;
	--secon03: #BBB;
	--secon04: #CCC;
	--secon05: #DDD;
	--secon06: #EEE;
	--secon07: #FFF;
}
.transition_1{
	-webkit-transition: all .1s cubic-bezier(.4,0,.2,1);
	-moz-transition: all .1s cubic-bezier(.4,0,.2,1);
	-ms-transition: all .1s cubic-bezier(.4,0,.2,1);
	-o-transition: all .1s cubic-bezier(.4,0,.2,1);
	transition: all .1s cubic-bezier(.4,0,.2,1);
}
.transition_2{
	-webkit-transition: all .2s cubic-bezier(.4,0,.2,1);
	-moz-transition: all .2s cubic-bezier(.4,0,.2,1);
	-ms-transition: all .2s cubic-bezier(.4,0,.2,1);
	-o-transition: all .2s cubic-bezier(.4,0,.2,1);
	transition: all .2s cubic-bezier(.4,0,.2,1);
}
.transition_3{
	-webkit-transition: all .3s cubic-bezier(.4,0,.2,1);
	-moz-transition: all .3s cubic-bezier(.4,0,.2,1);
	-ms-transition: all .3s cubic-bezier(.4,0,.2,1);
	-o-transition: all .3s cubic-bezier(.4,0,.2,1);
	transition: all .3s cubic-bezier(.4,0,.2,1);
}
.transition_4{
	-webkit-transition: all .4s cubic-bezier(.4,0,.2,1);
	-moz-transition: all .4s cubic-bezier(.4,0,.2,1);
	-ms-transition: all .4s cubic-bezier(.4,0,.2,1);
	-o-transition: all .2s cubic-bezier(.4,0,.2,1);
	transition: all .4s cubic-bezier(.4,0,.2,1);
}
.transition_5{
	-webkit-transition: all .5s cubic-bezier(.4,0,.2,1);
	-moz-transition: all .5s cubic-bezier(.4,0,.2,1);
	-ms-transition: all .5s cubic-bezier(.4,0,.2,1);
	-o-transition: all .5s cubic-bezier(.4,0,.2,1);
	transition: all .5s cubic-bezier(.4,0,.2,1);
}
.transition_6{
	-webkit-transition: all .6s cubic-bezier(.4,0,.2,1);
	-moz-transition: all .6s cubic-bezier(.4,0,.2,1);
	-ms-transition: all .6s cubic-bezier(.4,0,.2,1);
	-o-transition: all .6s cubic-bezier(.4,0,.2,1);
	transition: all .6s cubic-bezier(.4,0,.2,1);
}
.login_or{
	display: inline-block;
	position: relative;
	width: 100%;
	margin: 25px 0px 35px 0px;
	float: left;
}
.login_ors{
	display: block;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	padding: 0;
	margin: 0;
	height: 1.5px;
	background-color: var(--secon05);;
	width: 100%;
	z-index: 1;
}
.login_orss{
	display: block;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #aaa;
	z-index: 2;
	background-color: var(--secon07);
	padding: 10px 20px;
}
a{
	margin: 0;
	padding: 0;
	text-decoration: none;
	box-sizing: border-box;
	color: black;
}
ul,li,ol{
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px var(--secon07) inset !important;
	box-shadow: 0 0 0 30px var(--secon07) inset !important;
	-webkit-text-fill-color: black !important;
	text-fill-color: black !important;
	-webkit-transition: background-color 9999s ease-in-out 0s;
	transition: background-color 9999s ease-in-out 0s;
}
input[type="number"] { 
  -webkit-appearance: textfield;
	 -moz-appearance: textfield;
		  appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none;
}
input{
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	font-family: 'Roboto', Arial, sans-serif;
	color: black;
	outline: none;
}
div{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
div::-webkit-scrollbar{
	width: 8px;
	height: 8px;
	background-color: var(--secon07);
}
div::-webkit-scrollbar-thumb{
	background-color: var(--secon04);
	display: none;
}
div:hover::-webkit-scrollbar-thumb{
	display: block;
}
body{
	position: relative;
	padding: 0;
	margin: 0;
	text-align: justify;
	font-size: 14px;
	box-sizing: content-box;
	font-family: 'Roboto', Arial, sans-serif;
	background-color: var(--secon07);
	color: black;
	display: block;
	overflow: auto;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}
.respass{
	font-weight: bold;
	color: var(--main);
	cursor: pointer;
}
.respass:hover{
	text-decoration: underline;
}

#create-account{
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	min-height: calc(100vh - 30px);
	padding: 15px;
}
.border_main{
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	max-width: 400px;
	border: 1px solid var(--secon04);
	border-radius: 7px;
	padding: 25px;
	background-color: var(--secon07);
	float: none;
	margin: auto;
}
.title{
	display: block;
	overflow: hidden;
	font-size: 26px;
	font-weight: bold;
	color: var(--main);
	float: left;
	width: 100%;
	margin-bottom: 15px;
}
.title img{
	float: none;
	max-width: 100px;
	margin: auto;
}
.title picture{
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}
.title1{
	display: block;
	overflow: hidden;
	font-size: 18px;
	float: left;
	width: 100%;
	margin-bottom: 20px;
	color: #787878;
}
.input_mborder{
	position: relative;
	display: grid;
	width: 100%;
	height: auto;
	float: left;
	margin-bottom: 20px;
}
.input_mborder1 input{
	padding-right: 40px !important;
}
.login_logo{
	float: none;
	width: 100%;
	max-width: 100px;
	margin: auto;
}
.header_svg1{
	fill:#CCC;
	font-size: 36px;
	font-weight: 900;
}
.header_svg0 {
	fill: #EEE;
}
.input_border{
	float: left;
	display: flex;
	height: 35px;
	border: 0.5px solid var(--secon03);
	border-radius: 5px;
	position: relative;
	cursor: text;
	overflow: hidden;
}
.input_border_ac{
	border: 2px solid var(--main);
	overflow: visible;
}
.input_border_ax{
	border: 0.5px solid var(--secon03);
}
.input_name{
	width: 100%;
	display: block;
	overflow: hidden;
	padding: 3px 5px;
	background-color: var(--secon07);
	font-size: 16px;
	font-weight: 500;
	color: var(--secon01);
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translate(0px, -50%);
	z-index: 2;
}
.input_name_ac{
	color: var(--main);
	font-weight: bold;
	width: auto;
	left: 5px;
	top: -5px;
	font-size: 12px;
}
.input_name_ax{
	color: var(--secon01);
}
.input_in{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	outline: none;
	font-size: 16px;
	color: rgba(0,0,0,.87);
	padding: 0px 8px;
	background-color: var(--secon07);
	z-index: 1;
	box-sizing: border-box;
}
.input_note{
	color: red;
	font-size: 12px;
	padding: 10px 0 0 0;
	font-weight: 600;
}
.canh_bao{
	display: block;
	overflow: hidden;
	width: 13px;
	height: 13px;
	background-color: red;
	color: var(--secon07);
	font-size: 9px;
	font-weight: bold;
	border-radius: 100%;
	text-align: center;
	padding: 1px;
	float: left;
	margin-right: 5px;
}
.input_create{
	float: right;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	outline: none;
	background-color: var(--main);
	color: var(--secon07);
	font-weight: bold;
	font-size: 12px;
	padding: 10px 15px;
	cursor: pointer;
	height: 36px;
	border-radius: 18px;
}
.input_login{
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-color: rgba(255,255,255,0.00);
	font-weight: bold;
	font-size: 13px;
	color: var(--main);
	float: left;
	padding: 10px 12px;
	cursor: pointer;
	outline: none;
	height: 36px;
	border-radius: 18px;
}
.input_login:hover{
	background-color: #E0EAFB;
}
.showpass{
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.showpass::before{
	font-size: 1.15em !important;
}
.showpass>img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 80%;
	width: auto;
}
.lockaccount{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(255,255,255,0.00);
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	max-width: 350px;
	z-index: 1;
}
.lockaccount_i{
	width: 100%;
	padding-top: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("../library/icon/lock5.png");
}
.lockview{
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translate(-50%,0);
	padding: 5px 10px;
	color: red;
	font-weight: bold;
	background-color: var(--secon07);
	z-index: 2;
}
.lockview:hover{
	text-decoration: underline;
}
.textlock{
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 600px;
	padding: 10px;
	background-color: var(--secon07);
	box-shadow: 0px 0px 10px 0px gray;
	transform: translate(-50%,-50%);
	display: none;
	overflow: auto;
	text-align: left;
	border-radius: 8px;
}
.textlocks{
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
}
.incode_respass{
	width: 100%;
	padding: 7px 70px 7px 10px;
	margin: 10px 0;
	outline: none;
	border: 0.5px solid var(--secon03);
/*	border-radius: 5px;*/
	font-size: 16px;
	color: #787878;
	height: 34px;
}
.bcode_respass{
	display: block;
	overflow: hidden;
	width: 100%;
	position: relative;
}
.sendCode{
	display: block;
	overflow: hidden;
	width: 60px;
	height: 33px;
	position: absolute;
	top: 50%;
	right: 0.5px;
	padding: 7px;
	transform: translate(0,-50%);
	background-color: #DADADA;
	text-align: center;
	font-size: 16px;
	cursor: pointer;
}
.sendCode:hover{
	background-color: var(--secon03);
	color: var(--secon07);
}
.loading_00{
	z-index: 2147483648;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: visible;
}
.loading_01{
	-webkit-animation: rotate 2s linear infinite;
	animation: rotate 2s linear infinite;
	width: 50px;
	height: 50px;
}
.loading_02 {
	stroke: #FFF;
	stroke-linecap: round;
	-webkit-animation: dash 1.5s ease-in-out infinite;
	animation: dash 1.5s ease-in-out infinite;
}
.loading_stop{
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
	display: none;
	opacity: 0;
}
.loading_play{
	-webkit-animation-play-state: running;
	animation-play-state: running;
	display: block;
	opacity: 1;
}
@keyframes rotate {
  100% {
	transform: rotate(360deg);
  }
}
@keyframes dash {
	0% {
		stroke-dasharray: 1, 150;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -35;
	}
	100% {
		stroke-dasharray: 90, 150;
		stroke-dashoffset: -124;
	}
}
#conten_hidden{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2147483647;
	background-color: rgba(0,0,0,0);
	display: none;
}
.loading{
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 4px;
}
.loadingx{
	-webkit-transform-origin: top left;
	transform-origin: top left;
	height: 100%;
	position: absolute;
	width: 100%;
}
.loading1{
	-webkit-animation: primary-indeterminate-translate 2s infinite linear;
	animation: primary-indeterminate-translate 2s infinite linear;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
}
.loading2{
	-webkit-animation: auxiliary-indeterminate-translate 2s infinite linear;
	animation: auxiliary-indeterminate-translate 2s infinite linear;
	visibility: visible;
}
.loading1>.loadingxx{
	animation-delay: 0.5s;
}
.loadingxx{
	-webkit-animation: auxiliary-indeterminate-scale 2s infinite linear;
	animation: auxiliary-indeterminate-scale 2s infinite linear;
	background-color: var(--main);
	display: inline-block;
	height: 100%;
	position: absolute;
	width: 100%;
}
.loading_start{
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}
@keyframes primary-indeterminate-translate {
	0% {
		-webkit-transform: translateX(-145.166611%);
		transform: translateX(-145.166611%);
	}
	20% {
		-webkit-animation-timing-function: cubic-bezier(.5,0,.701732,.495819);
		animation-timing-function: cubic-bezier(.5,0,.701732,.495819);
		-webkit-transform: translateX(-145.166611%);
		transform: translateX(-145.166611%);
	}
	59.15% {
		-webkit-animation-timing-function: cubic-bezier(.302435,.381352,.55,.956352);
		animation-timing-function: cubic-bezier(.302435,.381352,.55,.956352);
		-webkit-transform: translateX(-61.495191%);
		transform: translateX(-61.495191%);
	}
	100% {
		-webkit-transform: translateX(55.444446%);
		transform: translateX(55.444446%);
	}
}
@keyframes auxiliary-indeterminate-translate {
	0% {
		-webkit-animation-timing-function: cubic-bezier(.15,0,.515058,.409685);
		animation-timing-function: cubic-bezier(.15,0,.515058,.409685);
		-webkit-transform: translateX(-54.888891%);
		transform: translateX(-54.888891%);
	}
	25% {
		-webkit-animation-timing-function: cubic-bezier(.310330,.284058,.8,.733712);
		animation-timing-function: cubic-bezier(.310330,.284058,.8,.733712);
		-webkit-transform: translateX(-17.236978%);
		transform: translateX(-17.236978%);
	}
	48.35% {
		-webkit-animation-timing-function: cubic-bezier(.4,.627035,.6,.902026);
		animation-timing-function: cubic-bezier(.4,.627035,.6,.902026);
		-webkit-transform: translateX(29.497274%);
		transform: translateX(29.497274%);
	}
	100% {
		-webkit-transform: translateX(105.388891%);
		transform: translateX(105.388891%);
	}
}
@keyframes auxiliary-indeterminate-scale {
	0% {
		-webkit-animation-timing-function: cubic-bezier(.205028,.057051,.576610,.453971);
		animation-timing-function: cubic-bezier(.205028,.057051,.576610,.453971);
		-webkit-transform: scaleX(.08);
		transform: scaleX(.08);
	}
	19.15% {
		-webkit-animation-timing-function: cubic-bezier(.152313,.196432,.648374,1.004315);
		animation-timing-function: cubic-bezier(.152313,.196432,.648374,1.004315);
		-webkit-transform: scaleX(.457104);
		transform: scaleX(.457104);
	}
	44.15% {
		-webkit-animation-timing-function: cubic-bezier(.257759,.003163,.211762,1.381790);
		animation-timing-function: cubic-bezier(.257759,.003163,.211762,1.381790);
		-webkit-transform: scaleX(.727960);
		transform: scaleX(.727960);
	}
	100% {
		-webkit-transform: scaleX(.08);
		transform: scaleX(.08);
	}
}
@media all and (max-width: 500px){
	.input_in{
		width: 95%;
	}
}