* {
	margin: 0;
	padding: 0;
	outline: 0;
	box-sizing: border-box;
}

body,
html {
	height: 100%;
}

body {
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
}

.sidenav {
	height: 100%;
	background-color: #205D80;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main {
	padding: 0px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .login-form {
    margin-top: 10%;
  }
  .sidenav {
    height: 400px;
  }
  .main {
    height: auto;
  }
}

@media screen and (min-width: 768px) {
	.main {
		margin-left: 25%;
	}

	.sidenav {
		width: 40%;
		position: fixed;
		z-index: 1;
		top: 0;
		left: 0;
	}

	.login-form {
		margin-top: 20%;
	}
}

.sidenav .logo {
	background: url('../imagens/logo-nfeweb.png') no-repeat center;
  width: 227px;
  height: 66px;
}

.btn-blue {
	background-color: #205D80 !important;
	color: #fff;
}

.btn-blue:hover {
	background-color: #133e57 !important;
	color: #fff;
}

.errorMessage{
  color: #f12c2c;
  font-family: Arial;
  font-size: 12px;
  text-align: center;
  display: block;
}

.form-control {
	font-size: 14px;
}
