body {
	background-color: #FEFEFE;
	margin: 0;
	padding: 0;
	font-family: 'Roboto';
	height: 100%;
}

#main {
	width: 60%;
	height: auto;
	min-width: 300px;
	margin: 5px auto;
	padding: 20px;
	box-shadow: 0 0 16px 2px #EEE;
	background-color: white;
	border-radius: 5px;
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -40%);
}

@media only screen and (min-width: 480px) and (max-width: 767px) and (orientation: landscape) {
    #main {
        top: 40%;
	    transform: translate(-50%, -20%);   
    }
}

#iptlogo {
	width: 160px;
	margin: 10px;
}

.m_container {
	margin: 100px auto;
}

.log_cont {
	display: flex;
	justify-content: center
}

#ipplogo {
	width: 200px;
	display: block;
	margin: 40px auto;
}

#loginlogo {
	width: 120px;
	position: relative;
	opacity: 0.8;
	transition: all 0.5s;
}
#loginlogo:hover {
	opacity: 1;
	transition: all 0.5s;
}

.b_link {
	text-align: center;
	margin: 50px auto 10px auto;
}
.b_link a {
	color: black;
}
.b_link a:hover {
	color: #00bcd4;
}

footer {
    display: none;
	margin: 0;
	padding: 5px;
	width: 100%;
	background-color: #222;
	position: absolute;
	top: 100%;
	transform: translate(0, -100%);
}

.f_container {
	width: 90%;
	position: relative;
	left: 5%;
}

.f_txt {
	color: white;
	font-size: 8pt;
}