.full-image {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.full-image .image-holder {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}
.full-image .image-holder img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  background: #333333;
}
.full-image .overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 10.16%, rgba(0, 0, 0, 0) 77.66%);
  width: 100%;
  height: 140%;
  position: absolute;
  top: -50px;
  left: -50px;
}

.login-form {
  max-width: 800px;
  padding: 40px 120px;
  background: rgba(255, 255, 255, 0.6196078431);
  border-radius: 8px;
  color: #2b2b2b;
  z-index: 3;
  /* position: fixed; */
  /* left: 50%; */
  width: 300px;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1000px) {
  .login-form {
    padding: 40px;
  }
}
.login-form .logo-wrapper img {
  width: 100%;
}
.login-form .input-wrapper {
  margin: unset;
}

main .container {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 100vh;
}
