#login {
	width: 100%;
}

.login--box {
	background-image: url(../img/login/login_splash.jpg);
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 5px;
	margin-bottom: 25px;
	min-height: 225px;
	position: relative;
}

.login--box .login--btn-register {
	background-color: var(--p);
	border-radius: 5px;
	bottom: 20px;
	color: var(--pt);
	left: 20px;
	margin: 0px;
	padding: 20px;
	padding-bottom: 10px;
	padding-top: 10px;
	position: absolute;
}

.login--box .login--btn-register:hover {
	background-color: var(--s);
	color: var(--st);
}

.login--form {
	border: 1px solid var(--p);
	border-radius: 5px;
	margin-bottom: 20px;
	padding: 20px;
}

.login--form button {
	background-color: var(--p);
	border-radius: 5px;
	border: 0px;
	color: var(--pt);
	cursor: pointer;
	font-size: 1.1rem;
	padding: 20px;
	padding-bottom: 10px;
	padding-top: 10px;
}

.login--form button:hover {
	background-color: var(--s);
	color: var(--st);
}

.login--form input {
	background-color: #FFF;
	border-radius: 5px;
	border: 1px solid var(--p);
	color: var(--bt) !important;
	font-size: 1.1rem;
	margin-bottom: 12.5px;
	padding: 12.5px;
	width: 100%;
}

.login--form input:disabled {
	background-color: var(--s);
	color: var(--st);
}

.login--form input:focus {
	background-color: var(--pl);
}

.login--form .small {
	margin-bottom: 0px;
	margin-top: 20px;
}

.logo {
	margin-bottom: 20px;
	width: 100%;
}

.logo img {
	display: block;
	height: auto;
	width: 100%;
}

@media (min-width: 480px) {
	.login--box {
		padding: 25px;
	}
	
	.logo img {
		margin: 0 auto;
		width: 70%;
	}
}

@media (min-width: 600px) {
	.login--box {
		background-size: cover !important;
	}
	
	.logo img {
		margin: 0 auto;
		width: 50%;
	}
}

@media (min-width: 800px) {
	#container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-ms-flex-line-pack: start;
		align-content: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	
	#login {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-ms-flex-line-pack: stretch;
		align-content: stretch;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		margin-bottom: 35px;
	}
	
	.login--box {
		margin: 0px;
		min-height: 1px;
		width: calc(50% - 17.5px);
	}
	
	.login--form {
		margin: 0px;
		width: calc(50% - 17.5px);
	}
	
	.logo {
		height: auto;
	}
	
	.logo img {
		width: 300px;
	}
}

@media (min-width: 1024px) {
	#footer {
		text-align: center;
	}
	
	#login {
		height: auto;
		margin: 0 auto;
		margin-bottom: 35px;
		width: 800px;
	}
}