/*VARIABLES*/
:root {
  --brandColor1: 			#007E7A;
  --brandColor1-light: 		#01B5A6;
  --brandColor1-lightest: 	#6DC6C4;
  --brandColor2:			#1A1A1A;
  --grey:					#CACACA;
}
/*end variables*/
body {
	background: rgb(0,126,122);
	background: -moz-linear-gradient(90deg, rgba(0,126,122,1) 0%, rgba(0,126,122,1) 50%, rgba(202,202,202,1) 50%, rgba(202,202,202,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(0,126,122,1) 0%, rgba(0,126,122,1) 50%, rgba(202,202,202,1) 50%, rgba(202,202,202,1) 100%);
	background: linear-gradient(90deg, rgba(0,126,122,1) 0%, rgba(0,126,122,1) 50%, rgba(202,202,202,1) 50%, rgba(202,202,202,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#007e7a",endColorstr="#cacaca",GradientType=1);
	font-family: arial, sans-serif;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
a, a:hover {
	transition: color .2s ease;
	text-decoration: none;
}

#contentWrapper {
	width: 100%;
}
.english {
	text-align: right;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-right: 0px;
	width: 100%;
	font-weight: bold;
}
.english a {
	color: #000;
}
@media (max-width: 768px) {
	.english a {
		font-size: 12px;
	}
}
.english a:hover {
	color: var(--brandColor1);
	text-decoration: none;
}
.column-brand {
	background: #000 url(../img/bg.png) 0 0 repeat;
	background-size: 200%;
	color: var(--grey);
	font-size: 16px;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
}

.column-brand p {
	margin: 60px 53px 40px 53px;
}
.column-brand a {
	color: var(--brandColor1-lightest);
}
.column-brand a:hover {
	text-decoration: none;
	color: var(--brandColor1-light);
}
.column-brand a:focus {
	color: var(--brandColor1);
}
.column-brand figure {
	position: relative;
	padding: 100px 0;
}
.column-brand figure:before { 
	content:'';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 300px;
	background: -moz-radial-gradient(circle, rgba(202,202,202,0.36458333333333337) 0%, rgba(202,202,202,0) 48%);
	background: -webkit-radial-gradient(circle, rgba(202,202,202,0.36458333333333337) 0%, rgba(202,202,202,0) 48%);
	background: radial-gradient(circle, rgba(202,202,202,0.36458333333333337) 0%, rgba(202,202,202,0) 48%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cacaca",endColorstr="#cacaca",GradientType=1);
}
@media (max-width: 768px) {
	.column-brand figure {
		padding: 30px 0 30px;
	}
	.column-brand figure:before {
		height: 150px;
		top: -30px;
		background: -moz-radial-gradient(circle, rgba(202,202,202,0.36458333333333337) 0%, rgba(202,202,202,0) 30%);
		background: -webkit-radial-gradient(circle, rgba(202,202,202,0.36458333333333337) 0%, rgba(202,202,202,0) 30%);
		background: radial-gradient(circle, rgba(202,202,202,0.36458333333333337) 0%, rgba(202,202,202,0) 30%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cacaca",endColorstr="#cacaca",GradientType=1);
	}
	.column-brand p {
		margin: 0px 30px 10px 30px;
		font-size: 14px;
	}
}
.column-logIn {
	background-color: var(--brandColor2);
	padding-top: 30px;
	padding-bottom: 30px;
}

h1 {
	color: var(--brandColor1-light);
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}
form {
	padding: 50px;
}
.form-control {
	border-radius: 0;
	background-color: #000;
	color: var(--grey);
	margin-bottom: 15px;
	padding: 15px 15px;
	border: 0;
	height: 54px;
}
.form-control:focus {
	background-color: #000;
	box-shadow: 0 0 0 0.2rem rgb(1 181 166 / 25%);
	color: #fff !important;
}
.alert {
	border-radius: 0;

}
.alert.alert-danger {
	
}
.btn-primary {
	background-color: var(--brandColor1-light);
	width: 100%;
	text-align: center;
	border-radius: 0;
	padding: 15px 15px;
	color: #000;
	font-weight: bold;
	border: 0;
}
.btn-primary:hover {
	background-color: var(--brandColor1-lightest);
	cursor: pointer;
}
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled):active:focus {
	background-color: var(--brandColor1);
	box-shadow: 0 0 0 0.2rem rgb(1 181 166 / 25%);
}
.siteFooter {
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
	font-size: 12px;
	color: #262626;
}
.siteFooter a {
	color: #262626;
	transition: color .2s ease;
}
.siteFooter a:hover {
	color: var(--brandColor1);
}
