* {
    padding: 0;
    margin: 0;
}
body {
    width: 100%;
    /* height: 0px; */
    display: flex;
    justify-content: center;
    touch-action: pan-x pan-y;
    background-color:#83ffe7; 
    /* 0x83ffe7 */
}
canvas {
    image-rendering: optimizeSpeed;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
}
#bg {
    position: fixed;
    max-width: auto;
    height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#loading-cont {
    color: white;
    font-size: 36px;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-weight: bold;
    position: absolute;
    bottom: 5%;
}
.div-form {
	position: fixed;
    width: 250px;
    height: 200px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}
.form-block {
    display: flex;
	flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 1em;
    background: #ead3af ;
    border-radius: 30px;
    border: 7px solid #6d2c16;
}
label {
    color: #9b4922;
    font-size: 28px;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-weight: bold;
	margin-top: 5px;
}
.textEnter {
    box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
	background-color:#ffffff;
	border-radius:6px;
	border:1px solid #dcdcdc;
	color:#666666;
	font-family:Arial;
	font-size:20px;
	font-weight:bold;
	padding:6px 6px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
    text-align: center;
    caret-color: red;
    margin-top: 15px;
}
.textEnter:hover {
	background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
	background-color:#f6f6f6;
}
.textEnter:active {
	position:relative;
	top:1px;
}
.btn {
    margin-top: 20px;
}
.btnClose {
    position: relative;
   top: -34px; left: 156px;
}