/*Body CSS*/

.login-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #eaebef;
  color: rgb(39, 39, 39);
  background-image: url("../../assets/sb_daet_logo_transparent.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: 750px;
}

.login-right {
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  padding: 20px 30px;
  background-color: white;
  width: 400px;
  height: 500px;
  /* flex-shrink: 0; */
}
.login-left {
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  width: 400px;
  height: 500px;
  flex-shrink: 0;
  background: linear-gradient(
    214deg,
    #200dfd 22.66%,
    #5243ff 57.46%,
    #9086ff 91.4%
  );
}
#login-texts {
  padding: 30px;
}
.login-text {
  color: #eaebef;
  font-size: 40px;
  font-weight: 800;
  line-height: 60px;
}
#login-text-third {
  font-size: 80px;
}

#login-pic {
  width: 400px;
  height: 300px;
  flex-shrink: 0;
  position: absolute;
  bottom: 0px;
}

#student_number {
  height: 50px;
}
#student_password {
  height: 50px;
}

/*Logo and images*/

#login-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#daet_logo {
  width: 80px;
  margin-bottom: 10px;
}

.error-text {
  color: red;
}

@media only screen and (max-width: 430px) {
  .login-right {
    margin: 0 1em;
    margin-top: -100px;
    padding: 1em;
    height: 550px;
  }
}

@media only screen and (max-width: 820px) {
  .login-left {
    display: none;
  }
  .login-right {
    margin: 0 1em;
    margin-top: -100px;
    padding: 1em;
    height: 550px;
  }
}
