:root {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif !important;
  padding-bottom: 100px !important;
}

.loginBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  overflow: hidden;
  border-radius: 15px;
  width: 320px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  box-shadow: 2px 2px 7px 7px rgba(177, 208, 255, 0.5);
}

.loginBox::after {
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  filter: blur(10);
}

.form-control {
  border: 2px solid #ccc;
}

label {
  font-size: small;
  color: #5f5f5f;
  font-weight: bold;
}

#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  outline: none;
  background-color: var(--bs-primary);
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  border-radius: 50px;
}

#backToTopBtn.show {
  display: block;
}