/* CSS file for login.php */

body{
	height: 100%;
	width: 100%;
	font-family: 'Montserrat', sans-serif;
}
.half{
	height: 100%;
	width: 50%;
}
.brand-container{
	width: 100%;
}
.login-container{
	width: 100%;
}
.login-box{
	background-color: white;
	max-width: 400px;
	padding: 40px;
	margin: auto;
	border-radius: 3px;
	box-shadow: inset 0 0 5px black;
}
.login-box input{
	font-size: 20px !important;
	color: black;
}
.brand-logo{
	max-width: 15%;
	filter: drop-shadow(-4px 0px 15px rgba(0, 0, 0, 0.5));
}
.brand-title{
	color: white;
	text-shadow: -4px 0px 15px rgba(0, 0, 0, 0.5);
}
#secondhalf{
	float: right;
}
.no-bottom-margin{
	margin-bottom: 0px;
}

@media (max-width: 1200px){
	.brand-logo{
		display: none;
	}
	.brand-title{
		font-size: 30px;
		margin-top: 5px;
		margin-bottom: 10px;
	}
    #firsthalf{
    	position: absolute;
    	top: 0px;
    	width: 100%;
    	height: 15%;
    }
    #secondhalf{
    	position: absolute;
    	top: 15%;
    	height: 85%;
    	width: 100%;
    }
}
@media (max-width: 450px){
	body{
		background-color: white !important;
	}
	.login-box{
		border-radius: 0px;
		box-shadow: none;
	}
	.login-box a{
		font-size: 18px;
	}
	#firsthalf{
		display: none;
	}
	#secondhalf{
		position: relative;
		height: 90%;
    	background-color: white !important;
	}
}