:root{
	--lighter-gray: #f9f9f9;
	--primary-alpha: #75b198;
	--primary: #f3ae2d;
}

.btn-primary {
	background-color: #03aecc !important;
	border:1px solid #03aecc !important;
}

.btn-primary:disabled, .btn-primary:hover{
	background-color: #000 !important;
}

.btn-outline-primary{
	border-color: #000 !important;
}

.btn-outline-primary:hover{
	background-color: #000 !important;
}

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;
	color: #113d4a;
	width: 95%;
	margin-bottom: 20px;
	padding-bottom: 10px;
	margin-top: 1em;
	font-size: 2rem;
	font-weight: 600;
}

.font-italic { font-style: italic !important; }

p{
	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-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;
}

.login-left-bottom {
	background: #113d4a; 
	color: #ffffff;
    font-size: 2rem;
	font-weight: 600;
	width: 100%;
}
.features-container{
	width: 100%;
	height: 100%;
	padding: 0 10%;
	margin: auto;
	background-color: #fff;
}

.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{
	width: 100%;
	height: 80px;
}

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

}
