@import url("//fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Roboto:wght@300&family=Teko&display=swap");
@import url("//fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Poppins:wght@500&family=Roboto:wght@300&family=Teko&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Montserrat, "Century Gothic";
}

body {
  height: 100vh;
  width: 100vw;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background: #00b9a4;
  background: linear-gradient(185deg, #00b9a4 0%, #0e1f3b 100%);
}

body .login_container {
  height: auto;
  width: auto;
  padding: 30px 50px;
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.342);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.342);
  position: relative;
  -webkit-animation: popUpLogin 0.5s ease-in-out forwards;
          animation: popUpLogin 0.5s ease-in-out forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 400px;
}

body .login_container .form_elements {
  width: 100%;
  padding: 10px;
  z-index: 3;
  position: relative;
}

body .login_container .logo_container {
  display: -ms-grid;
  display: grid;
  place-items: center;
}

body .login_container .logo_container img {
  height: 60px;
  width: 60px;
  margin-bottom: 10px;
  pointer-events: none;
}

body .login_container .logo_container h1 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #3148ca;
}

body .login_container .logo_container h3 {
  font-size: 13px;
  font-weight: 300;
}

body .login_container .banner_container {
  height: 0px;
  background-color: white;
  position: relative;
  padding: 0px;
  width: 100%;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-animation: showCarousel 0.5s ease-in-out forwards;
          animation: showCarousel 0.5s ease-in-out forwards;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

body .login_container .banner_container .carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
}

body .login_container .banner_container .carousel-item.active {
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

body .login_container .banner_container .carousel-item h1 {
  width: 100%;
  height: 100%;
  padding: 5px 20px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: #131313;
  background: white;
}

body .login_container .banner_container .carousel-item div {
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

body .login_container .banner_container .carousel-item div img {
  height: 158%;
  width: 125%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
  position: absolute;
  pointer-events: none;
}

body .login_container .banner_container .carousel-item .red {
  background-color: white;
}

body .login_container .banner_container .carousel-item .green {
  background-color: white;
}

body .login_container .banner_container .carousel-item .yellow {
  background-color: white;
}

body .login_container .banner_container .carousel-item .violet {
  background-color: white;
}

@-webkit-keyframes showCarousel {
  0% {
    height: 0px;
  }
  80% {
    height: 150px;
  }
  100% {
    height: 120px;
  }
}

@keyframes showCarousel {
  0% {
    height: 0px;
  }
  80% {
    height: 150px;
  }
  100% {
    height: 120px;
  }
}

body .login_container .lblProtect {
  width: 100%;
  height: auto;
  padding: 5px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: #269168;
}

body .login_container .form_container {
  height: auto;
  background-color: rgba(255, 255, 255, 0);
  z-index: 100;
  padding-top: 5px;
}

body .login_container .form_container form {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
  border-top: solid 1px #e7e7e7;
}

body .login_container .form_container form input {
  height: 35px;
  border-radius: 3px;
  border: solid 1px #b8b8b8;
  width: 100%;
  padding: 7px 10px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
}

body .login_container .form_container form input:nth-child(2) {
  margin-bottom: 5px;
}

body .login_container .form_container form .err_msg {
  margin-bottom: 10px;
  width: 100%;
  height: auto;
  background-color: none;
  color: white;
  font-size: 9px;
  border: solid 1px #ffd3cc;
  border-radius: 4px;
  background-color: rgba(255, 0, 0, 0.336);
  padding: 4px 7px;
  display: none;
}

body .login_container .form_container form #btnLogin {
  height: 35px;
  border-radius: 3px;
  border: none;
  background-color: #3fb165;
  color: white;
  font-size: 14px;
  width: 80%;
  text-decoration: none;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
  position: relative;
}

body .login_container .form_container form #btnLogin img {
  height: 20px;
  width: 20px;
  position: absolute;
  right: 10px;
  display: none;
}

body .login_container .form_container form #btnLogin:hover {
  cursor: pointer;
  background-color: #4bc574;
  -webkit-box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
}

body .login_container .blob {
  height: 150px;
  width: 155%;
  position: absolute;
  bottom: -3%;
  left: -5%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-animation: showBack 0.3s ease-in-out forwards;
          animation: showBack 0.3s ease-in-out forwards;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  pointer-events: none;
}

@-webkit-keyframes showBack {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes showBack {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body .login_container .lblOffice {
  position: absolute;
  font-size: 10px;
  bottom: 5px;
  right: 5px;
  z-index: 10;
  width: 100%;
  text-align: center;
  color: #2d629e;
}

@-webkit-keyframes popUpLogin {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes popUpLogin {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media only screen and (max-width: 750px) {
  body {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  body .login_container {
    height: 100%;
    width: 100%;
    min-height: 500px;
    border-radius: 0px;
  }
  body .login_container .blob {
    position: fixed;
    bottom: 0;
  }
  body .login_container img {
    height: 70px;
    width: 70px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  body .login_container h1 {
    font-size: 6vw;
  }
  body .login_container h3 {
    font-size: 5vw;
  }
  body .lblProtect {
    font-size: 3vw;
  }
}

@media only screen and (max-width: 500px) {
  body {
    overflow-y: scroll;
  }
  body .login_container {
    height: 100%;
    width: 100%;
    min-height: 500px;
    border-radius: 0px;
  }
  body .login_container .logo_container .blob {
    position: fixed;
    bottom: 0;
  }
  body .login_container .logo_container img {
    height: 60px;
    width: 60px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  body .login_container .logo_container h1 {
    font-size: 3.4vw;
  }
  body .login_container .logo_container h3 {
    font-size: 3vw;
  }
  body .login_container .lblProtect {
    font-size: 2.4vw;
  }
}
/*# sourceMappingURL=index.css.map */