/* New Login CSS */

body {
	background: #2196F3;
	color: #333;
	font: 100% Roboto, Sans Serif;
	height: 100vh;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

#background-wrap {
    bottom: 0;
	left: 0;
	padding-top: 50px;
	position: fixed;
	right: 0;
	top: 0;
	z-index: -1;
}
 
/* KEYFRAMES */

@-webkit-keyframes animateCloud {
    0% {
        margin-left: -500px;
    }
    100% {
        margin-left: 100%;
    }
}

@-moz-keyframes animateCloud {
    0% {
        margin-left: -1000px;
    }
    100% {
        margin-left: 100%;
    }
}

@keyframes animateCloud {
    0% {
        margin-left: -1000px;
    }
    100% {
        margin-left: 100%;
    }
}

/* AnimaÃ§Ãµes */

.x1 {
	-webkit-animation: animateCloud 75s linear infinite;
	-moz-animation: animateCloud 75s linear infinite;
	animation: animateCloud 75s linear infinite;
	
	-webkit-transform: scale(0.65);
	-moz-transform: scale(0.65);
	transform: scale(0.65);
}

.x2 {
	-webkit-animation: animateCloud 30s linear infinite;
	-moz-animation: animateCloud 30s linear infinite;
	animation: animateCloud 30s linear infinite;
	
	-webkit-transform: scale(0.6);
	-moz-transform: scale(0.6);
	transform: scale(0.6);
}

.x3 {
	-webkit-animation: animateCloud 20s linear infinite;
	-moz-animation: animateCloud 20s linear infinite;
	animation: animateCloud 20s linear infinite;
	
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	transform: scale(0.5);
}

.x4 {
	-webkit-animation: animateCloud 18s linear infinite;
	-moz-animation: animateCloud 18s linear infinite;
	animation: animateCloud 18s linear infinite;
	
	-webkit-transform: scale(0.4);
	-moz-transform: scale(0.4);
	transform: scale(0.4);
}

.x5 {
	-webkit-animation: animateCloud 25s linear infinite;
	-moz-animation: animateCloud 25s linear infinite;
	animation: animateCloud 25s linear infinite;
	
	-webkit-transform: scale(0.55);
	-moz-transform: scale(0.55);
	transform: scale(0.55);
}

.x6 {
	-webkit-animation: animateCloud 60s linear infinite;
	-moz-animation: animateCloud 60s linear infinite;
	animation: animateCloud 60s linear infinite;
	
	-webkit-transform: scale(0.55);
	-moz-transform: scale(0.55);
	transform: scale(0.55);
}

.x7 {
	-webkit-animation: animateCloud 35s linear infinite;
	-moz-animation: animateCloud 35s linear infinite;
	animation: animateCloud 35s linear infinite;
	
	-webkit-transform: scale(0.65);
	-moz-transform: scale(0.65);
	transform: scale(0.65);
}

.x8 {
	-webkit-animation: animateCloud 10s linear infinite;
	-moz-animation: animateCloud 10s linear infinite;
	animation: animateCloud 10s linear infinite;
	
	-webkit-transform: scale(0.35);
	-moz-transform: scale(0.35);
	transform: scale(0.35);
} 


.x9 {
	-webkit-animation: animateCloud 40s linear infinite;
	-moz-animation: animateCloud 40s linear infinite;
	animation: animateCloud 40s linear infinite;
	
	-webkit-transform: scale(1.25);
	-moz-transform: scale(1.25);
	transform: scale(1.25);
}
/* Objetos */

.nuvem {
	background: #fff;
	background: -moz-linear-gradient(top,  #fff 5%, #f1f1f1 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(5%,#fff), color-stop(100%,#f1f1f1));
	background: -webkit-linear-gradient(top,  #fff 5%,#f1f1f1 100%);
	background: -o-linear-gradient(top,  #fff 5%,#f1f1f1 100%);
	background: -ms-linear-gradient(top,  #fff 5%,#f1f1f1 100%);
	background: linear-gradient(top,  #fff 5%,#f1f1f1 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#f1f1f1',GradientType=0 );
	
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	
	-webkit-box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);

	height: 120px;
	position: relative;
	width: 350px;
}

.nuvem:after, .nuvem:before {
    background: #fff;
	content: '';
	position: absolute;
	z-indeX: -1;
}

.nuvem:after {
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;

	height: 100px;
	left: 50px;
	top: -50px;
	width: 100px;
}

.nuvem:before {
	-webkit-border-radius: 200px;
	-moz-border-radius: 200px;
	border-radius: 200px;

	width: 180px;
	height: 180px;
	right: 50px;
	top: -90px;
}




.full-page{
  background: #2196F3;
	color: #333;
	font: 100% Arial, Sans Serif;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
  height:100vh;
}

.login-box-new{
  background-color:#fff;
  max-height:630px;
  max-width:450px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);	
  border-radius:4px;
  margin:auto;
  
position: absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  
  overflow-y:auto;
  

}

.flex-center{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
}

.flex-between{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
}

.logo-owner{
  padding :30px;
}

.logo-owner>img{
  height:100px;
  width: 100%;
	object-fit: contain;
}

.input-div{
  padding:7.5px 35px;
  width:100%;
}

.row-padding{
  padding:15px 35px;
}
.input-div .input-field{
  width:100%;
  height:40px;
  border-radius:4px;box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  border:none;
  padding-left:15px;
  font-size:16px;
  color:rgba(0,0,0,0.8);
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box; 
}

.input-div .submit-btn{
  width:100%;
  height:40px;box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  border:none;
  font-weight:bold;
  font-size:16px;
  color:#fff;
  background-color:#1E75BB;
  border-radius:20px;
}

.input-div .submit-btn:hover{
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.login-box-new .text-div{
	font-family: 'Roboto';
  font-size:14px;
  font-weight:bold;
  color:rgba(0,0,0,0.6)
}

.input-div .white-btn{
	text-align: center;
	text-decoration: none;
	display: block;
  width:100%;
  height:40px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  border:none;
  font-weight:bold;
  font-size:16px;
  color:rgba(0,0,0,0.6);
  background-color:#fff;
  border-radius:20px;
  line-height:40px;
}

.white-btn>img{
  height:20px;
	object-fit: contain;
  margin-right:10px;
  
}

.input-div .white-btn:hover{
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.flex-between .blue-btn{
  display:inline-block;
  padding: 0 15px;
  margin:5px 0;
  height:30px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  border:none;
  font-size:14px;
  color:#fff;
  background-color:#1E75BB;
  border-radius:20px;
  line-height:30px;
}

.blue-btn>img{
  height:14px;
  
	object-fit: contain;
  margin-right:5px;
}

.logo-product{
  display: block;
  padding:20px 0;
}

.logo-product>img{
  height:70px;
  width: 100%;
	object-fit: contain;
}


/* --------------- Old Login CSS */

#bg-login-screen{
  width: 100%;
  height: 100vh;
  position: relative;;
}
.bgls-img-area{
  width: 100%;
  height: -moz-calc(100% - 250px);
  height: -webkit-calc(100% - 250px);
  height: calc(100% - 250px);

  position: relative;
}
.bgls-img-area:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url("../images/csu_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);


}
.bgls-login-box {
    width: 520px;
    height: 240px;
    background-color: #ffffff;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -260px;
    margin-top: -120px;
    text-align: center;
    padding-top: 22px;
}
.bgls-footer-area{
  width: 100%;
  height: 250px;
  position: absolute;
  bottom: 0;
  border-bottom: 12px solid #2196F3;
  background-image: url(../images/csPoweredLogo.png);
  background-repeat: no-repeat;
  background-position: center center;
}
.bgls-login-logo {
    width: 100%;
    height: 104px;
    background-image: url(../images/ache-images/ache-logo.png);
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 14px;
}

#top-nav-bar {
    width: 100%;
    height: 51px;
    background-color: #2196F3;
    padding: 16px 8px;
}
#top-nav-bar h2 {
    margin: 0;
    color: #ffffff;
    font-weight: 400;
    font-size: 20px;
}
#login-box {
    width: 460px;
    height: 550px;
    /*-moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);*/
    border: 2px solid #e5e5e5;
    position: absolute;
    left: calc(50% - 230px);
    top: calc(50% - 290px);
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 3px;
}
.login-box-logo {
    width: 100%;
    height: 120px;
    margin: 20px 0;
    text-align: center;
}
.login-box-logo img {    
    height: 150px;
}
.login-box-content {
    padding: 0 15px;
    text-align: center;
    margin: 30px 0;
}
.login-box-content p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 23px;
}
.login-msg {
    margin: 0;
    position: absolute;
    top: -68px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 26px;
    font-weight: 300;
    color: #737272;
}
.login-box-footer {
    padding: 0 25px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 16px;
}
.login-box-footer a {
    text-decoration: none;
}
#developer-logo{
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 10px;
  background-image: url(../images/csPoweredLogo.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 44%;
    left: 0;
}
.no-access {
    font-size: 20px;
    padding-top: 38px;
    font-weight: 300;
}
.no-access i {
    color: #d82e08;
    font-size: 20px;
}
.fab {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: auto;
    -webkit-box-shadow: 2px 3px 3px 0px rgba(41, 41, 41, .3);
       -moz-box-shadow: 2px 3px 3px 0px rgba(41, 41, 41, .3);
            box-shadow: 2px 3px 3px 0px rgba(41, 41, 41, .3);+
            float: right;
            margin-right: 10px;
    margin-top: 10px;
    float: right;
    cursor: pointer;
        text-align: center
}
.fab.red{
  background-color: #ff4081;
}
.fab.blue{
  background-color: #40b0ff;
}
.fab i {
    color: #ffffff;
    font-size: 34px;
    line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #login-box{
    width: 100%;
    height: auto;
    position: static;
  }
  .login-box-logo img {
    width: 100%;
  }
  #developer-logo{
    position: static;
  }
  div#button-holder {
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
  body{
    min-height: 100% !important;
  }
.footer {    
     background-color: transparent !important;
    border-top: none !important;
     position: static !important;
}
    
}
h4.login-error-msg {
    color: red;
}
.footer{
    padding: 15px 20px;
    background-color: #efefef;
    border-top: 1px solid gainsboro;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.footer__text {
    text-align: center;
    margin: 0;
    font-size: 14px;
    font-weight: 300;    
}