
/*===================== COVER STYLES - NORMAL  =====================*/ 
#cover-section {
	background-color: rgba(45,45,45,1);
	background: url(../images/cover-bkg-1-blur.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	height: 100%;
	padding: 0;
}
.cover-content-wrapper {
	display: table;
	width: 100%;
	height: 100%;
}
.cover-content {
	display: table-cell;
	/*vertical-align: middle;*/
	vertical-align: top;
	text-align: center;
	margin: 0;
	/*padding:1rem 0 0 0;*/
}

.cover-logo {
	padding: 10rem 0 3rem 0;
}
.cover-name {
	color: var(--primaryColor);
	font-size: 70px;
	font-weight: 500;
	line-height: 1.15em;
	padding: 0 0 1rem 0;
}
.cover-tagline {
	font-size: 26px;
	font-weight: 400;
	line-height: 1.75em;
}

/*`lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
	.cover-name { font-size: 66px; }
}
/*`md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
	/*.cover-content {vertical-align: middle; }*/
	.cover-name { font-size: 55px; padding: 0 0 1.5rem 0; }
	.cover-tagline { font-size: 24px; line-height: 1.65em; }
}
/*`sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.cover-logo { padding: 12rem 0 2.5rem 0; }
	.cover-name { font-size: 45px; padding: 0 1rem 1rem 1rem; }
	.cover-tagline { font-size: 22px; }
}
@media (max-width: 466.98px) {
	.cover-name { font-size: 40px; }
	.cover-tagline { font-size: 20px; padding: 0 2rem 1rem 2rem; line-height: 1.5em; }
}


/*===================== COVER STYLES - with LOGIN BOX  =====================*/ 
#login-form.cover-content {
	display: table-cell;
	vertical-align: middle;
}
#login-form .cover-logo {
	padding: 0 0 2rem 0;
}



/*============== LOGIN form controls section =============*/  
.login-section {
	padding: 2.5em;
	margin-top: 1rem;
	position: relative;
	background-color: #FFFFFF;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.1), 0 6px 20px 0 rgba(0,0,0,0.15);
	border-radius: 8px;
}
/*`lg` applies to medium devices (tablets, less than 992px)*/
/*@media (max-width: 991.98px) {
	.login-section { margin-top: 7rem; }
}*/
/*`md` applies to small devices (landscape phones, less than 768px)*/
/*@media (max-width: 767.98px) {
	.login-section { margin-top: 6rem; }
}*/
/*`sm` applies to x-small devices (portrait phones, less than 576px)*/
/*@media (max-width: 575.98px) {
	.login-section { margin-top: 4rem; }
}*/

.login-logo {
	padding: 0 0 2rem 0;
}
.text-login {
	margin: 0 0 1rem 0; 
	padding: 0 0.5rem;
}
.error-caption {
	color: var(--primaryColor);
	font-weight: 400;
}
.form-group {
    margin: 2rem 2rem 3rem 2rem ;
}
/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { 
	.form-group { margin: 2rem 5rem 3rem 5rem ; }
}

.form-control {
  background-color: #FFFFFF;
  border: 1px solid #B8B8B8;
  border-radius: 4px;
  color: #3e3e3e;
  padding: 10px 10px;
  height: 40px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form-control:focus {
  background-color: #FFFFFF;
  border: 1px solid #3e3e3e;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0 !important;
}
.form-control {
    margin-bottom: 1.875rem;
}
.form-control::-moz-placeholder {
  color: #B8B8B8;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-font-smoothing: antialiased;
}
.form-control::-webkit-input-placeholder {
  color: #B8B8B8;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-font-smoothing: antialiased;
}
.form-control:-ms-input-placeholder {
  color: #B8B8B8;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-font-smoothing: antialiased;
}

.form-control-plain {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 8px 0;
  font-size: 16px;
  background-color: transparent;
  border-color: #D3D3D3;
  resize: vertical;
}
.form-control-plain:focus {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #3e3e3e;
}

.bttn-site {
	color: var(--primaryColor-text);
	background-color: var(--primaryColor);
	text-align: center;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.035em;
	text-transform: uppercase;
	border: none;
	border-radius: 4px;
}
.bttn-lg {
	font-size: 16px;
	padding: 0.75rem 2rem;
}

