@import url("dashboard.css");
@import url("add-occupant.css");
@import url("buildings.css");
@import url("reports.css");
*{
	margin:0;
	padding:0;
}
html, body, .container{
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	color: #4a4a4a;
	background: #eeeeee;
}
figure{
	margin:0;
	padding: 0;
}
.white{
	color:white;
}
.center{
	align-items:center;
	justify-content: center;
}
.justify{
	align-items:center;
	justify-content: space-between;
}
.flex{
	display: flex;
	align-items:center;
	justify-content: space-between;
}
.text-cap{
	text-transform: uppercase;
}
.align-left{
	text-align:left;
}
.align-right{
	text-align:right;
}
.align-center{
	text-align:center;
}
h1{
	font-family: 'Oswald', sans-serif;
	font-size: 1.2em;
	text-align: center;
	margin-bottom: 25px;
	text-transform: uppercase;
}
.container .table-heading{
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  font-size: 1.2em;
  font-weight: 100;
}
.heading span{
	width: 100%;
	height: 55px;
	display: flex;
	align-items: center;
	font-size: 1.2em;
	font-weight: 100;
	border-bottom: 2px solid #dddddd;
	margin-bottom: 20px;
}
.login-container{
	background: #eeeeee;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
}
.login{
	background: white;
	width: 400px;
	height: 440px;
	padding: 40px;
	border-top: 3px solid #4285F4;
}
.logo{
	font-size: .9em;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-bottom: 20px;
	color: #4f4f4f;
}
.logo img{
	width: 250px;
	display: block;
	margin-bottom: 20px;
}
.login-form form{
	display: flex;
	flex-direction: column;
}
.login-form form input[type="text"],
.login-form form input[type="password"]{
	width: 100%;
	height: 45px;
	margin-bottom: 20px;
	font-size: .8em;
	padding-left: 50px;
	box-sizing: border-box;
	border: 1px solid #dfdfdf;
	color: #4f4f4f;
}
.login-form form input[type="text"]{
	text-transform: lowercase;
}
.login-form form input[type="text"]::-webkit-input-placeholder{
	text-transform: none;
}
.login-form form input[type="text"]:-ms-input-placeholder{
	text-transform: none;
}
.login-form form input[type="text"]::-moz-placeholder{
	text-transform: none;
}
.login-form form input[type="text"]{
	background: #fff url("../images/user.png") no-repeat 4% 50%;
	background-size: 20px 20px;
}
.login-form form input[type="password"]{
	background: #fff url("../images/password.png") no-repeat 4% 50%;
	background-size: 20px 20px;
}
.login-form form input[type="submit"]{
	background: #4285F4;
	border: 0;
	width: 100%;
	height: 45px;
	font-size: .8em;
	text-transform: uppercase;
	font-weight: bold;
	color: white;
	box-sizing: border-box;
	margin-top: 20px;
	cursor: pointer;
	-webkit-transition: ease-in-out .2s;
    -moz-transition: ease-in-out .2s;
    -ms-transition: ease-in-out .2s;
    -o-transition: ease-in-out .2s;
    transition: ease-in-out .2s;
	-webkit-appearance: none;
	-moz-appearance:    none;
	appearance:         none;
}
.login-form form input[type="submit"]:hover{
	background: #3972d1;
}
.login-form .remember-pass{
	display: flex;
	justify-content: space-between;
	font-size: .9em;
}
.login-form .remember-pass label{
	display: flex;
	align-items: center;
	justify-content: center;
}
.login-form .remember-pass label input[type="checkbox"]{
	display: block;
	width: 18px;
	height: 18px;
	margin-right: 10px;
}
@media screen and (max-width: 360px){
	.login{
		margin: 0 20px;
	}
	.forgot-pass{
		display: none;
	}
}
@media screen and (max-width: 568px){
	.login{
		margin: 0 20px;
	}
	.forgot-pass{
		display: none;
	}
}
@media screen and (max-width: 736px){
	.login{
		margin: 0 20px;
	}
	.forgot-pass{
		display: none;
	}
}
.container .top-bar .profile a{
	color: white;
	right: 5px;
	font-size: .9em;
}
