/* CSS file for login.php */

body{
	height: 100%;
	width: 100%;
	font-family: 'Montserrat', sans-serif;
}
/* label focus color */
.input-field input[type=text]:focus + label, .input-field input[type=password]:focus + label, .input-field input[type=email]:focus + label {
 color: #d4e157 !important;
}
/* label underline focus color */
.input-field input[type=text]:focus, .input-field input[type=password]:focus, .input-field input[type=email]:focus {
 border-bottom: 1px solid #d4e157 !important;
 box-shadow: 0 1px 0 0 #000 !important;
}
.half{
	height: 100%;
	width: 50%;
}
.brand-container{
	width: 100%;
}
.login-container{
	width: 100%;
}
.login-box{
	background-color: #212121;
	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: white;
}
.login-box h3{
	color:white;
}
.register-screen p{
	color: white;
	font-size: 16px;
}
.register-text{
	color: #9e9e9e;
	margin-bottom: 0px;
}
.register-text a{
	font-size: inherit !important;
	color: #d4e157;
}
.brand-logo{
	max-width: 20%;
	/*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 !important;
}
.fixed-links{
	position: fixed;
	left:10px;
	bottom:10px;
}
.fixed-links a{
	color: grey;
	margin: 5px;
}

@media (max-width: 1200px){
	.login-box h3{
		display:none;
	}
	.register-screen p{
		font-size: 18px;
	}
	.brand-logo-small{
		max-width: 150px;
		display: block !important;
		margin: auto;
		margin-bottom: 10px;
		opacity: 0.6;
	}
	.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: #212121 !important;
	}
	.login-box{
		border-radius: 0px;
		box-shadow: none;
	}
	.login-box a{
		font-size: 18px;
	}
	#firsthalf{
		display: none;
	}
	#secondhalf{
		position: relative;
    	top: 0;
		height: 90%;
    	background-color: #212121 !important;
	}
}