/* GLOBAL */

body {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

/* IDs */

#overlays {
    position: absolute; 
    left: 0; 
    right: 0; 
    top: 0; 
    bottom: 0; 
    background-color: #f0f2f5;
    z-index: 200;
}

#title {
    padding: 10px;
}

#canvas {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

#user, #password {
	display: block;
	margin-right: auto;
	margin-left: auto;
	width: 100%;
    height: 50px;
    padding: 6px 12px;
    font-size: 15px;
    color: #555;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
	margin-bottom: 17px;

    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}


#user:focus, #password:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}

.btn {
	font-size: 16px;
	width: 100%;
	height: 50px;
	color: #fff;
    background-color: #1877f2;
    border-color: #1877f2;
	border-radius: 10px;
}

.btn:hover {
	color: #fff;
	background-color: #0f6ce5;
}

.registerPass {
	font-size: 15px;
    display: block;
    margin-right: auto;
    margin-left: auto;
	margin-bottom: 20px;
	margin-top: 20px;
}

#helloDialog {
    width: 400px;
	max-height: 100%;
    background-color: #fff;
	box-shadow: 0 0 27px rgb(0 0 0 / 28%);
    margin: 10px auto;
    padding: 5px 15px 5px 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


.logoI {
	display: block;
    height: 200px;
    width: auto;
    margin: auto;
    left: 0;
    right: 0;
    text-align: center;
}