/* default css on body */
body {
  color: #e7e7ed;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
}


.animated-bg {
  position: absolute;
  width: 100%;
  height: 110%;
  background: linear-gradient(-45deg, #04A9F3, #3CDBF1, #50A9E3, #3C358F, #8F2175, #F52B7F, #E33A27, #F49312);
  background-size: 300%;
  animation: change 15s ease-in-out infinite;
  
}

@keyframes change {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

a {
  color: #e7e7ed;
}

.help-block {
  color: red !important;
}

.invalid-field {
  border: 1px solid red;
}



.authentication-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  min-height: 100vh;
  width: 100%
}

.authentication-wrapper .authentication-inner {
  width: 100%
}

.authentication-wrapper.authentication-1, .authentication-wrapper.authentication-2, .authentication-wrapper.authentication-4 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.authentication-wrapper.authentication-1 .authentication-inner {
  max-width: 300px
}

.authentication-wrapper.authentication-2 .authentication-inner {
  max-width: 380px
}

.authentication-wrapper.authentication-3 {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch
}

.authentication-wrapper.authentication-3 .authentication-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch
}

.authentication-wrapper.authentication-4 .authentication-inner {
  max-width: 800px
}


/* .loginBg {
  background-image: url('../img/bg/login-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
} */


.authentication-inner .leftContent {
  padding: 30px;
}


.authentication-inner .aboutacies {
  color: #ffffff;
  /* font-weight: 600; */
  font-size: calc(10px + 1vw);
  width: calc(100% - 15vw);
  position: absolute;
  top: 37%;
  left: 15%;
  font-style: italic;
}

.authentication-inner .logo {
  /*height: calc(100px + 2vh);*/
  width: 100%;
}


.authentication-inner .rightContent {
  padding: 20px calc(10px + 5vw);
}

.authentication-inner .siteLink {
  display: block;
  margin-top: 24px;
  color: var(--acPrimaryColor);
  font-weight: 600;
  font-size: 19px;
  text-align: center;
  font-style: italic;
  text-decoration: underline;
}

.authentication-inner .resetPwdLink {
  color: var(--formFontColor);
  text-decoration: underline;
}

.authentication-inner .resetPwdLink:hover {
  color: gray;
}

.authentication-inner p {
  color: var(--formFontColor);
  font-size: 17px;
  font-weight: 400;
}

.authentication-inner h4 {
  color: var(--formFontColor);
  text-decoration: underline;
  font-size: 17px;
}

.form-control {
  height: var(--formControlHeight);

}

.loginBtn {
  height: 60px;
  width: 180px;
  font-size: 19px;
  background: var(--themeButtonBg);
  color: white;
  font-weight: 500;
}


.form-label, .col-form-label, .col-form-legend {
  font-size: 1.2rem !important;
  color: var(--formFontColor);
}

.alert-dark-danger {
  background: red !important;
  color: white;
  margin-top: 5px
}

.authentication-inner .resetPwdLink {
    color: #b0b0b0;
}
.authentication-inner .bg-white.mx-auto{
  background-color:#231f20!important;
}
.authentication-inner .form-label {
  color: #fff;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .authentication-wrapper:after {
    content: '';
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 0%;
    flex: 0 0 0%;
    min-height: inherit;
    width: 0;
    font-size: 0
  }
}


@media screen and (max-width: 992px) {
  .authentication-inner .leftContent {
    display: none;
  }

  .authentication-inner .rightContent {
    padding: 20px calc(10px + 1vw);
  }
}