@charset "utf-8";
/* CSS Document */
@font-face {
  font-family: roboto;
  src: url(../font/Roboto-Regular.ttf);
  
  
}

body {
	margin: 0;
	padding: 0;
	/* background: url(../img/bg.jpeg) no-repeat center top; */
	background-size: cover;
	height: auto;
	font-family:roboto;
	letter-spacing: 0.5px;
	background:#F5F5F7;
}

.login-box {
  width: 320px;
  height: auto;
  background:#48FCF9; /*<!-- #000 #00687B  00829A   #64C27B--> */
  color: #3B3B3B;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  padding: 70px 30px;
}

.login-box .avatar {
  width: 90px;
  height: 90px;
  border-radius: 10%;
  position: absolute;
  top: 5px;
  left: calc(50% - 50px);
  
  background:#FFF;
}

.login-box h1 {
  position:relative;
  margin: 0;
  padding: 0 0 20px;
  text-align: center;
  font-size: 20px;
  top:25px;
}

.login-box label {
  margin: 0;
  padding: 0;
  font-weight: bold;
  display: block;
  color:#4A4A4A;
}

.login-box input {
  width: 100%;
  margin-bottom: 20px;
  
}

.login-box input[type="text"], .login-box input[type="password"] {
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  outline: none;
  height: 40px;
  color: #fff;
  font-size: 16px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #fff;
}

.login-box input[type="submit"] {
  border: none;
  outline: none;
  height: 40px;
  background: #666666; /* #b80f22 */
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
}

.login-box input[type="submit"]:hover {
  cursor: pointer;
  background: #E0DEE1;
  color: #000;
}

.login-box a {
  text-decoration: none;
  font-size: 12px;
  line-height: 20px;
  color: lightgrey;
}

.login-box a:hover {
  color: #fff;
}
.logo-novatic {
  position:relative;
  width: 100%;
  height: auto;
  border-radius: 0%;
  top: 15px;
  
}