		body{
			display: flex;
			justify-content: center;
			align-items: center;
			overflow: hidden;
			flex-direction: column;
			}
		#bg{
			width: 100vw;
			height: 100vh;
			position: absolute;
			left: 50%;
			top: 50%;
			transform: translate(-50%,-50%);
			z-index: -2;
			object-fit: cover;
		}
		
		.black{
			width: 100vw;
			height: 100vh;
			position: absolute;
			left: 50%;
			top: 50%;
			transform: translate(-50%,-50%);
			z-index: -1;
			background-color: rgba(0,0,0,.68);
		}
		*{
			margin: 0;
			padding: 0;
			letter-spacing: .4em;
		}
		form{
			display: flex;
			width: 30vw;
			max-width: 600px;
			min-width: 400px;
			flex-wrap: wrap;
			justify-content: space-between;
			background: rgba(0,0,0,.59);
			padding:90px 20px 40px 20px;
			position: relative;
			/* left: 50%;
			top: 50%;
			transform: translate(-50%,-50%); */
			border-radius: 10px;
		}
		input{
			width: 80%;
			height: 35px;
			background: #212121;
			outline: none;
			border: none;
			border-radius: 5px;
			color: white;
			padding: 1% 5%;
			margin: 10px 5%;
		}
		.box img{
			position: absolute;
			left: 20px;
			top: 35px;
			transform: scale(.7);
		}
		.box img+input{
			padding: 1% 0% 1% 15%;
			width: 75%;
		}
		.mui-input-row{
			display: flex;
		}
		label{
			display: flex;
			align-items: center;
			margin: 0 10px;
		}
		
		
		.box{
			width: 50%;
			position: relative;
		}
		
		h5{
			color: white;
			font-weight: 500;
			font-size: 10px;
			padding-left: 10%;
		}
		.top{
			position: absolute;
			top: 20px;
			left: 50%;
			transform: translateX(-50%);
		}
		.top *{
			color: white;
			text-align: center;
		}
		
		.top p{
			font-size: 8px;
			margin-top: 5px;
			transform: scale(.6);
		}
		
		h3{
			font-weight: 400;
		}
		
		#submit{
			position: absolute;
			left: 50%;
			bottom: -50px;
			transform: translateX(-50%);
			width: 120px;
			height: 40px;
			color: white;
			width: 120px;
			height: 40px;
			display: block;
			background: url(http://pic.56uxi.com/img/register_button.png);
			display: flex;
			justify-content: center;
			align-items: center;
			cursor: pointer;
		}
		
		.logo{
			margin: 40px 0;
		}
		
		.err{
			font-size: 8px;
			color: red;
			transform: scale(.7);
			display: inline-block;
			/* position: absolute; */
		}
		
		@media only screen and (max-width: 768px) {
			.box{
				width: 100%;
			}
			
			form{
				overflow: scroll;
				max-height: 40vh;
			}
			
			#submit{
				position: relative;
				bottom: 0;
			}
			
		}
		.getve{
			color:#ffe17e;
			cursor: pointer;
		}