@import url('https://fonts.googleapis.com/css?family=Montserrat');
:root {
	/*background color*/
	--main-color: #000000;
	/*logo image width height*/
	--img-height: auto;
	--img-width: 150px;
	/*input button hover color*/
	--button-hover-clr: #101010;
	/*Input text color*/
	--ip-text-color: black;
	/*Input bg clor and footer bg color*/
	--ip-bg-color: #f6f6f6;
	/*form content background*/
	--form-bg: white;
	--button-fg-color: white;
	/* link color */
	--link-txt-color: #8a8a8a;
	--error-txt-color: #ff0000;
}

html {
	background: var(--main-color);
	background-repeat: no-repeat;
	overflow-y: hidden
}

body {
	font-family: Montserrat, sans-serif;
	height: 100vh;
	overflow-y: auto;
	margin: 0;
	color: #000000;
}

a,
a:visited {
	color: var(--link-txt-color);
	display: inline-block;
	text-decoration: none;
	font-weight: 400;
	font-size: 13px;
}

@media only screen and (min-device-width : 600px) {
	a,
	a:visited {
		font-size: 14px;
	}
}

.mainOuter {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	min-height: 100%;
	padding: 20px;
}

@media only screen and (min-device-width : 600px) {
	.mainOuter {
		padding: 30px;
	}
}

#contentDiv {
	-webkit-border-radius: 8px 8px 8px 8px;
	border-radius: 8px 8px 8px 8px;
	background: var(--form-bg);
	max-width: 350px;
	position: relative;
	padding: 0;
	-webkit-box-shadow: 0 30px 60px 0 rgba(0, 0, 0, .3);
	box-shadow: 0 30px 60px 0 rgba(0, 0, 0, .3);
	text-align: center
}

@media only screen and (min-device-width : 600px) {
	#contentDiv {
		width: 90%;
	}
}

#footer {
	background-color: var(--ip-bg-color);
	border-top: 1px solid #f1f1f1;
	text-align: center;
	-webkit-border-radius: 0 0 8px 8px;
	border-radius: 0 0 8px 8px;
	padding: 15px 25px;
}

.logo {
	height: 100px;
	width: 100%
}

@media only screen and (min-device-width : 600px) {
	#footer {
		padding: 25px;
	}
	.logo {
		height: 120px;
	}
}

.logo img {
	width: var(--img-width);
	height: var(--img-height);
	margin: 0;
	position: relative;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

input[type=submit] {
	font-family: Montserrat, sans-serif;
	background-color: var(--main-color);
	border: none;
	color: var(--button-fg-color);
	text-align: center;
	text-decoration: none;
	display: inline-block;
	text-transform: uppercase;
	font-size: 13px;
	-webkit-box-shadow: 0 10px 30px 0 rgba(95, 186, 233, .4);
	box-shadow: 0 10px 30px 0 rgba(95, 186, 233, .4);
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	padding: 15px 90px;
	margin: 10px 0 40px 0;
	cursor: pointer;
}

@media only screen and (min-device-width : 600px) {
	input[type=submit] {
		padding: 15px 85px;
		margin: 10px 20px 40px 20px;
	}
}

input[type=submit]:hover {
	background-color: var(--button-hover-clr)
}

input[type=submit]:active {
	-moz-transform: scale(.95);
	-webkit-transform: scale(.95);
	-o-transform: scale(.95);
	-ms-transform: scale(.95);
	transform: scale(.95)
}

input[type=password],
input[type=text] {
	font-family: Montserrat, sans-serif;
	background-color: var(--ip-bg-color);
	border: none;
	color: var(--ip-text-color);
	text-align: center;
	text-decoration: none;
	display: inline-block;
	margin: 5px;
	width: 85%;
	border: 2px solid var(--ip-bg-color);
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px
	font-size: 13px;
	padding: 15px 10px;
}

@media only screen and (min-device-width : 600px) {
	input[type=password],
	input[type=text] {
		font-size: 14px;
		padding: 12px 15px;
	}
}

input[type=password]:focus,
input[type=text]:focus {
	border-bottom: 2px solid var(--main-color)
}

input[type=password]:placeholder,
input[type=text]:placeholder {
	color: #ccc
}

.underline:after {
	display: block;
	left: 0;
	bottom: -10px;
	width: 0;
	height: 2px;
	background-color: var(--main-color);
	content: "";
	transition: width .2s
}

.underline:hover {
	color: var(--main-color)
}

.underline:hover:after {
	width: 100%
}

:focus {
	outline: 0
}

* {
	box-sizing: border-box
}




