@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: 140vh;
  background: #0d1117;
}

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

.inputbox {
  margin-bottom: 20px;
}

.headings {
  margin-bottom: 30px;
}

.mainheading {
  font-size: 2rem;
}

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

hr {
  margin-bottom: 30px;
  box-shadow: 0px 0px 100px 1px white;
}
.namebox {
  margin-bottom: 5px;
  width: 50%;
}

.container {
  position: relative;
  top: 100px;
  width: 48rem;
  margin: auto;
  background-color: #0d1117;
  box-shadow: 0px 0px 25px 10px rgb(48, 48, 48);
  color: white;
  padding: 40px;
  border-radius: 20px;
}

.inline {
  display: inline;
}

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

.password {
  animation: none;
}

h1 {
  font-size: 40px;
  margin-bottom: 13px;
}

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

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

.disabledbutton {
  pointer-events: none;
}

.passwordCheck {
  float: right;
  margin-right: 19px;
  margin: 3px 19px 3px 0px;
  font-size: small;
  display: none;
  color: rgb(194, 54, 54);
}

.passwordContainer {
  width: max-content;
}

.uploadButton {
  display: block;
  width: 200px;
  height: 40px;
  background-color: #01f080ea;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.uploadButton:hover {
  transform: scale(1.02);
  transition: transform 300ms;
}

.flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
}
