body {
	font-family: Roboto Condensed-Bold, sans-serif;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.login {
	margin: auto;
	color: rgb(220, 220, 220);
	background: #000000;
	box-shadow:-5px -5px 50px 2px #b7410eb3;
	border-style: solid;
	border-radius: 4px;
	border-color: rgba(255, 255, 255, 0.8);
	padding-left: 50px;
	padding-right: 50px;
	padding-top: 20px;
	padding-bottom: 50px;
	transition: 0.3s;
	animation: boxshadow 2s;
}

@keyframes boxshadow {
	0% {
		color: #b7410eb3;
		box-shadow: 0 0 10px #b7410eb3;
		box-shadow: 0 0 30px #b7410ee8;
		box-shadow: 0 0 60px #ffbb009d;
		box-shadow: 0 0 90px #ffbb00c7;
		box-shadow: 0 0 120px #ffbb00;
	}

}

.login .head {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 0px;
}

.captchaimage{
	display: flex;
	align-items: center;
	justify-content: center;
}

.login .head .company {
	font-size: 2.5em;
}

.company {
	color: white;
}

.login .msg {
	text-align: center;
	color: #ff0000;
	font-size: 1.2em;
}

.animhide{
	animation-name: fadeOutOpacity;
	animation-iteration-count: 1;
	animation-delay: 1.5s;
	animation-timing-function: ease-out;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

@keyframes fadeOutOpacity {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.login .form input[type=text].text {
	border: none;
	background: none;
	box-shadow: 0px 2px 0px 0px #dcdcdc;
	width: 100%;
	color: #dcdcdc;
	font-size: 1em;
	outline: none;
}

.login .form input[type=email].text {
	border: none;
	background: none;
	box-shadow: 0px 2px 0px 0px #dcdcdc;
	width: 100%;
	color: #dcdcdc;
	font-size: 1em;
	outline: none;
	margin-bottom: 50px;
}


.login .form .text::placeholder {
	color: #d3d3d35e;
}

.login .form input[type=password].password {
	border: none;
	background: none;
	box-shadow: 0px 2px 0px 0px #dcdcdc;
	width: 100%;
	color: #dcdcdc;
	font-size: 0.9em;
	outline: none;
	margin-bottom: 60px;
	margin-top: 20px;
}

.login .form .password::placeholder {
	color: #d3d3d35e;
}

.login .form .btn-login {
	background: none;
	text-decoration: none;
	font-size: 1em;
	color: rgb(220, 220, 220);
	box-shadow: 0px 0px 0px 2px white;
	border-radius: 3px;
	padding: 5px 2em;
	transition: 0.5s;
}


.login .form .btn-login:disabled {
	background: #0f292765;
	color: rgba(0, 0, 0, 0.292);;
	transition: 0.5s;
}

.login .form .btn-login:hover:enabled {
	background: #a00000;
	color: #ffffff;
	transition: 0.5s;
	transform: scale(1.2);
}

.login .forgot {
	text-decoration: none;
	color: rgb(146, 146, 146);
	float: right;
	font-size: 0.9em;
	padding: 5px 0px 3px;

}
.forgot:hover {
	color:rgb(220, 220, 220);
	transform: scale(1.2);
}

footer {
	padding: 1em;
	text-align: left;
	color: #ffffff;
	bottom: 20px;
	padding-left: 20px;
	font-size: 14px;
}
