:root{
	--lighter-gray: #f9f9f9;
	--primary-alpha: #f8782f;
	--primary: #f8782f;
}

.btn-primary{
	background-color: var(--primary);
	border:1px solid #ccc;
}

.btn-info {
	background-color: var(--primary) !important;
	border:1px solid #ccc !important;
}

.btn-primary:disabled, .btn-primary:hover{
	background-color: var(--primary)
}

.btn-outline-primary{
	border-color: var(--primary);
}

.btn-outline-primary:hover{
	background-color: var(--primary)
}

body{
	color: #777;
	min-height: 100vh;
	display: flex;
	align-items: stretch;
}

.title{
	text-align: left;
	padding-left: 1rem;
	padding-bottom: 10px;
}

.apptitle{
	border-bottom: 1px solid white;
	width: 95%;
	margin-bottom: 20px;
	padding-bottom: 10px;
	margin-top: 1em;
	font-size: 2rem;
	font-weight: 600;
}


p{
	padding-left: 1rem;
	font-size: 1.1rem;
	font-weight: lighter;
}

p strong{
	font-weight: bold;
}
.subtitle{
	display: block;

}


.subtitle a{
	text-align: left;
}



.login-container{
	display: flex;
	align-items: flex-start;
	align-items: stretch;
	width: 100%;
}

.login-left{
	background-image: url('/static/generic/images/festivities.png');
	background-size: cover;
	display: flex;
	justify-content:center;
	flex-direction: column;
	align-items: center;
	width: 65%;
	border-right: 1px solid lightgray;
	transition: width 1s ease-out;
}

.features-container{
	width: 100%;
	height: 100%;
	padding: 0 10%;
	margin: auto;
	color: white;
	background-color: var(--primary-alpha);
	/*background-color: rgba(39, 128, 227,  0.5);*/
}

.features-title{
	padding-top: 3rem;
	margin-bottom: 1em;
}

.login-right{
	display: flex;
	color: #777;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 35%;
	background-color: white;
	transition: width 1s ease-out;
	padding-top:20px;
}
.form-container{
	width: 90%;
	margin: auto;
	margin-top: 1rem;
}
.login-form {
	padding: 2rem 1rem;

}

.login-form * input{
	display: block;
}

.login-form * button{
	display: block;
}

.logo{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	height: 80px;
	margin-right: 5rem;
}

#form-result {
	font-size: small;
}


/**************************
***************************

	RESPONSIVE

***************************
**************************/


@media only screen and (max-width: 992px) 
{
	.login-left{
		width: 50%;
	}
	.login-right{
		width: 50%;
	}

}


@media only screen and (max-width: 768px) 
{
	.login-left{
		display: none;
	}
	.login-right{
		width: 100%;
	}

}

@media only screen and (max-width: 480px) 
{
	.login-left {
		display: none;
	}
	.login-right {
		width: 100%;
	}

	.login-right .logo {
		width: 45%;
	}
	.login-right .logo img {
		width: 40%;
	}

}
