@font-face {
  font-family: TiltNeon;
  src: url("../fonts/TiltNeon-Regular-VariableFont_XROT\,YROT.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/classroom.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}

.container {  
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;  
}

.login-cont {
  display: flex;
  flex-direction: column;
  width: 35%;
  padding: 40px 30px;
  border-radius: 8px;
  opacity: 0.7;
  background-color: #8c5fff;
  box-shadow: 2px 4px 8px #34235f;
}

.img-cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.img-cont img {
  width: 60px;
  height: auto;
  padding: 10px;
}

.img-cont p {
  color: #fff;
  font-size: 24px;
}

.login-cont input {
  border: 0;
  border-radius: 6px;
  padding: 5px 10px 5px 15px;
   font-family: TiltNeon;
   font-size: 22px;
}

.email-cont {
  display: flex;
  flex-direction: column;
}

.form-label {
  color: #fff;
  font-family: TiltNeon !important;
  margin-left:2px;
  font-family: TiltNeon;
}

.form-control {
  margin: 5px 0px 5px 0px;
}

.password-cont {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.btn-outline-secondary {
  border: 0;
  margin-top: 40px;
  border-radius: 6px;
  padding: 5px 20px 5px 20px;
  background-color: #fff !important;
  border-color: #fff !important;
  color: #8c5fff !important;
  font-family: TiltNeon !important;
}

.btn-outline-secondary:hover {
  cursor: pointer;
  border-color: #fff !important;
  background-color: #8c5fff !important;
  color: white !important;

}

.forgot-link {
  color: #fff;
  text-decoration: none;
  margin-top: 5px;
  width: 50%;
   font-family: TiltNeon;
}

.forgot-link:hover {
  color: white;
  opacity: 60%;
}

@media(min-width: 375px) { 
  .login-cont {
    width: 365px;
  }
  
}
