
* { margin:0; padding:0; box-sizing: border-box; }

html, body {
  padding: 0;
  margin: 0;
  position: relative;
  min-height: 100%;
  height: 100%;
}

body {
	color: #000;
	font-family: "Arial";
	font-size: 14px;
}


/* LOGIN */
body#login-page {
	background-color: #eee;
	height: 100%; 
	background-position: center; 
	background-repeat: no-repeat; 
	background-size: cover; 
}


#login_wrapper {
	width: 600px;
	height: 460px;
	position: absolute;
	z-index: 2;
	  left: 50%;
	  top: 50%;
	  -webkit-transform: translate(-50%, -50%);
	  transform: translate(-50%, -50%);
}
#login_wrapper div.right {
	width: 600px;
	height: 460px;

	border-radius: 10px;
	  padding: 60px 115px 49px 45px;
	  opacity: 0.9;
	  
	  /*box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3); */
	  background-image: linear-gradient(111deg, rgba(255, 255, 255, 1) 12%, #eee 100%);
}

#login_wrapper h1 {
	  font-size: 30px;
	  font-weight: 900;
	  color: #00175a;
}

#login_wrapper input {
	  width: 364px;
	  padding: 10px 10px 10px 10px;
	  border-radius: 2px;
	  background-color: transparent;
	  border: solid 1px #a7a8aa;
	color: #53565a;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
}





.button {
	border-radius: 25px;
	padding: 11px 38px;
	font-size: 12px;
	border: 1px solid #53565a;
	color: #53565a;
	width: 150px;
	/* width: auto; */
	display: inline-block;
	text-align: center;
	cursor: pointer;
}
.button.auto {
	width: auto;
}
.button:hover {
	background-color: #53565a;
	color: #fff;
}
.button.secondary {
	border: 1px solid #006fcf;
	color: #006fcf;
	background-color: #fff;
}
.button.secondary:hover {
	background-color: #006fcf;
	border: 1px solid #006fcf;
	color: #fff;
}
.button.primary {
	background-color: #006fcf;
	border: 1px solid #006fcf;
	color: #fff;
}
.button.primary:hover {
	background-color: #fff;
	color: #006fcf;
}
