body {
  display: grid;
  place-items: center;
  margin: 0;
  height: 100vh;
  overflow: hidden;
  padding: 0;
}

* {
  box-sizing: border-box;
}

.background {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 150vw;
  height: 100vh;
}

.background img {
  position: absolute;
  top: -75vh;
  left: 0;
  height: 200vh;
  width: 150vw;
  transform-origin: bottom;
  pointer-events: none;
}

.login {
  position: relative;
  z-index: 2;
  background-color: rgba(var(--bs-secondary-bg-rgb), 0.25);
  backdrop-filter: blur(38px);
  border-radius: 0.75rem;
  padding: 3rem 1.5rem 2rem;
  width: clamp(320px, 66%, 420px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.login form {
  text-align: left;
  width: 90%;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 48px;
  display: flex;
  flex-direction: row-reverse;
}
.login_avatar {
  display: inline-block;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 2px solid white;
  background-size: cover;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: -64px;
  right: -64px;
  z-index: 1;
}

@media (max-width: 800px) {
  .login_avatar {
    width: 96px;
    height: 96px;
    right: calc(50% - 48px);
    top: 48px;
  }
}
