@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
  background: #0d1117;
  display: flex;
  align-items: center;
}

.login-container {
  position: relative;
  bottom: 2vh;
  width: 28rem;
  height: 32rem;
  margin: auto;
  /* position: relative;
  top: 12%; */
  /* position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); */
  background-color: #0d1117;
  box-shadow: 0px 0px 25px 10px rgb(48, 48, 48);
  color: white;
  padding: 40px;
  border-radius: 20px;
}

.headings {
  margin-bottom: 30px;
}

.mainheading {
  font-size: 2rem;
}

.subheading {
  color: rgb(206, 206, 206);
}

.namebox {
  margin-bottom: 5px;
}

input {
  width: 90%;
  height: 2.3rem;
  margin-bottom: 10px;
  padding: 9px;
  border-radius: 4px;
  border: none;
  background-color: rgb(230, 230, 230);
}

.inputbox {
  margin-bottom: 20px;
}

.button {
  text-align: center;
  width: 90%;
  height: 2.3rem;
  background-color: rgb(117, 203, 246);
  margin: 30px 0px 10px 0px;
  border-radius: 4px;
}

.signin {
  position: relative;
  top: 15%;
}

a {
  text-decoration: none;
  color: white;
}

.loginfooter {
  width: 90%;
  font-size: 14px;
}
.forgotpassword,
.signup {
  float: right;
}

.loginfooter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.inline {
  display: inline;
}

.loginerror {
  float: right;
  margin-right: 39px;
  font-size: small;
  display: none;
  color: rgb(194, 54, 54);
  animation: blink 2.5s linear infinite;
}

.disabledbutton {
  pointer-events: none;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 885px) {
  .login-container {
    position: relative;
    top: 85px;
    width: 22rem;
    height: 28rem;
  }
  .mainheading {
    font-size: 1rem;
  }
}

@media screen and (max-width: 400px) {
  .login-container {
    position: relative;
    top: 85px;
    width: 20rem;
    height: 27rem;
  }
}

