@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&family=Raleway:wght@100&family=Roboto:wght@300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f6f6f6;
}

#container {
  width: 100%;
  position: relative;
  height: 100vh;
}

#container .navbar {
  padding: 9px;
  text-align: center;
  position: fixed;
  left: 0px;
  right: 0px;
}

#container .navbar a {
  margin: auto;
}

#container .navbar a .logo_img {
  margin: auto;
  width: 100%;
}

#container .form_cnt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url("../images/app.jpg");
  background-position: center center;
  background-size: cover;
  height: 100vh;
  padding: 40px;
  background-color: rgba(255, 0, 0, 0.6);
  background-blend-mode: multiply;
}

#container .form_cnt form {
  background: rgba(255, 255, 255, 0.9411764706);
  padding: 40px;
  padding-top: 70px;
  height: 450px;
  margin: auto;
  border-radius: 5px;
}

#container .form_cnt form h3 {
  text-align: center;
  margin-bottom: 19px;
  color: #e3232c;
}

#container .form_cnt form label {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: black;
  margin-bottom: 3px;
  margin-top: 17px;
}

#container .form_cnt form .loin_btn {
  border: none;
  background: #e3232c;
  color: white;
  width: 60%;
  margin: auto;
  text-align: center;
  display: block;
  padding: 12px;
  border-radius: 3px;
  margin-top: 35px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

#container .form_cnt form .loin_btn:hover {
  opacity: 0.8;
}

#container .form_cnt .right {
  width: 50%;
}

#container .form_cnt .right h3 {
  background-image: linear-gradient(285deg, #e2def2 0%, #e3232c 29%, #ff000c 67%, #e0db23 100%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 20px;
}

#container .form_cnt .right .desc {
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

.push {
  /* if you want to increase/decrease the space between the footer & main-page contents.
  increase the heights
  */
}

#footer {
  position: fixed;
  width: 100%;
  bottom: 0px;
  background-color: black;
  z-index: 100;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}

#footer small {
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  color: white;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
/* tablet */
@media only screen and (max-width: 1100px) {
  .form_cnt {
    justify-content: center !important;
  }
  .form_cnt form {
    padding: 40px;
    padding-top: 70px;
    width: 70%;
    height: 450px;
  }
  .form_cnt form h3 {
    text-align: center;
    margin-bottom: 25px;
  }
  .form_cnt form label {
    font-size: 19px !important;
  }
  .form_cnt form .loin_btn {
    font-size: 19px !important;
  }
  .form_cnt .right {
    display: none;
  }
  #footer small {
    font-size: 19px !important;
  }
}
/* mobile */
@media only screen and (max-width: 600px) {
  .form_cnt {
    padding: 15px !important;
  }
  .form_cnt form {
    padding: 40px;
    padding-top: 70px;
    width: 100% !important;
    height: 450px;
  }
  .form_cnt form h3 {
    text-align: center;
    margin-bottom: 25px;
  }
  .form_cnt form label {
    font-size: 19px !important;
  }
  .form_cnt form .loin_btn {
    font-size: 19px !important;
  }
  #footer small {
    font-size: 15px !important;
  }
}


/*# sourceMappingURL=login.css.map */
