body{
  font-family: 'Ubuntu', sans-serif; 
}

.bodyBox{
  height: 100vh;
  width: 100vw;
  position: relative;
}

.loginBox{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -70%);
}

.formBox{
  height: 14rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.5px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  text-align: center;
  padding:0.5rem 1rem;
}

.incorrectPassOrUser{
  width: 100%;
  position: absolute;
  margin: 0 auto;
  z-index: -1;
  bottom: -1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.incorrectInner{
  background-color:#F68989;
  color: #874356;
  text-align: center;
  width: 90%;
  padding: 4px 0;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.hidden{
  display: none;
}
