@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');

*{
  box-sizing:border-box;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  font-family: 'DM Sans', Arial, Verdana, Helvetica, sans-serif;
}

body{
	margin:0;
	overflow: hidden;
	font-size:0;
}

.sceneCanvas{
	padding: 5% 5% 5% 5%;
	background: rgb(205, 248, 205);
	width: 100vw;
	height: 100vh;
}

.inputText {
	width: 250px;
	height: 40px;
	line-height: 40px;
	position: absolute;
	bottom: 35px;
	left: calc(50% - 125px);
	background: none;
	color: white;
	font-size: 30px;
	font-family: arial;
	text-align: center;
	border: 1px solid white;
	background: rgba(255,255,255,0.2);
}

.mouseInstr {
  position: fixed;
  left: 0;
  bottom:5px;
  color: #000;
  z-index:10;
  font-size:16px;
  font-family: Helvetica, Verdana, sans-serif;
  opacity:0.5;
  width: 100%;
  text-align: center;
  margin: 0;
}

h1{
  color:#ccc;
  text-align:center;
  font-family: 'Vibur', cursive;
  font-size: 50px;
}

.login-form{
  position: absolute;
  width:350px;
  padding:40px 30px;
  background:#ffffff;
  margin:0 auto;
  left: 0;
  right: 0;
  top: 5%;
  overflow: hidden;
}

.imgBoxLogin {
  width: 200px;
  height: auto;
}

.form-group{
  margin-bottom:15px;
}

.form-control{
  width:80%;
  height:40px;
  border:none;
  padding:5px 7px 5px 15px;
  background:#fff;
  color:#666;
  border-bottom:2px solid #ddd;
}

.form-group .fa{
  right:15px;
  top:17px;
  color:#999;
}

.log-status.wrong-entry .form-control, .wrong-entry .form-control + .fa {
  border-color: #ed1c24;
  color: #ed1c24;
}

.field_hidden{
	display: none;
}

.log-btn{
  background: #0A325B;
  width:100%;
  font-size:16px;
  height:50px;
  color:#fff;
  text-decoration:none;
  border:none;
  border-radius: 8px;
}

.log-btn:hover{
  background: #407534;
}

.link{
  text-decoration:none;
  color:#C6C6C6;
  float:right;
  font-size:12px;
  margin-bottom:15px;
}

.link:hover{
    text-decoration: underline;
    color:#8C918F;
}

.alert{
  display:none;
  font-size:12px;
  color:#f00;
  float:left;
}

.alert_show {
  display:block;
  animation: fadeIn 2s;
  -webkit-animation: fadeIn 2s;
  -moz-animation: fadeIn 2s;
  -o-animation: fadeIn 2s;
  -ms-animation: fadeIn 2s;
}

.icon-span-base{
	vertical-align: bottom;
}

.icon-span-eye{
	vertical-align: middle;
	margin-left: -20px
}

.navBar-menu-item {
	display: flex;
	margin-right: 40px;
	list-style: none;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-o-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
