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

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

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

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

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(--main-alpha);
}

.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;
    overflow:hidden;
}

.logo img{
    max-width: 30%;
    max-height: 100%;
    object-fit: cover;
}

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

@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%;
	}

}
