@charset "utf-8";
/* CSS Document */
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{
	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: white;
}
div::-webkit-scrollbar-thumb{
	background-color: #cccccc;
	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: white;
	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;
}
.border_main{
	position: relative;
	display: block;
	overflow: hidden;
	width: 90%;
	max-width: 600px;
	border: 1px solid #CCCCCC;
	border-radius: 7px;
	padding: 25px;
	background-color: #ffffff;
}
.title{
	display: block;
	overflow: hidden;
	font-size: 22px;
	font-weight: bold;
	color: red;
	float: left;
	width: 100%;
	margin-bottom: 15px;
}
.title img{
	float: left;
	height: 30px;
	margin-right: 5px;
}
.title1{
	display: block;
	overflow: hidden;
	font-size: 25px;
	font-weight: 500;
	color: #787878;
	float: left;
	width: 100%;
	margin-bottom: 30px;
}
.input_mborder{
	display: grid;
	width: 47.5%;
	margin-right: 2.5%;
	height: auto;
	float: left;
	margin-bottom: 20px;
}
.input_border{
	float: left;
	display: flex;
	height: 35px;
	border: 0.5px solid #BBBBBB;
	border-radius: 5px;
	position: relative;
	cursor: text;
	overflow: hidden;
}
.input_border1{
	margin-right: 0;
	margin-left: 2.5%;
}
.input_border2{
	width: 40%;
}
.input_name{
	width: 100%;
	display: block;
	overflow: hidden;
	padding: 3px 5px;
	background-color: white;
	font-size: 16px;
	font-weight: 500;
	color: #777777;
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translate(0px, -50%);
	z-index: 2;
}
.input_in{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 92%;
	outline: none;
	font-size: 16px;
	color: rgba(0,0,0,.87);
	padding: 0px;
	background-color: white;
	z-index: 1;
	box-sizing: border-box;
}
.input_in1{
	width: 96%;
}
.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: white;
	font-size: 9px;
	font-weight: bold;
	border-radius: 100%;
	text-align: center;
	padding: 1px;
	float: left;
	margin-right: 5px;
}
.input_create{
	float: right;
	display: block;
	overflow: hidden;
	outline: none;
	background-color: #0675bc;
	color: white;
	font-weight: bold;
	font-size: 12px;
	padding: 10px 15px;
	border-radius: 5px;
	cursor: pointer;
}
.input_login{
	display: block;
	overflow: hidden;
	background-color: rgba(255,255,255,0.00);
	font-weight: bold;
	font-size: 13px;
	color: #0675bc;
	float: left;
	padding: 10px 12px;
	cursor: pointer;
	outline: none;
}
.input_login:hover{
	background-color: #E0EAFB;
}
.showpass{
	position: relative;
	width: 7.5%;
	height: 35px;
	display: block;
	overflow: hidden;
	float: left;
}
.showpass>img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 80%;
	width: auto;
}
@media all and (max-width: 500px){
	.input_mborder{
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	.showpass{
		width: 15%;
	}
	.input_border2{
		width: 85%;
	}
	.input_in{
		width: 95%;
	}
}