.full-image {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  filter: blur(3px) sepia(0.1);
}
.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;
}

header {
  display: none !important;
}

.login-form {
  max-width: 1300px;
  padding: 40px 40px;
  background: rgba(217, 209, 195, 0.75);
  border-radius: 8px;
  color: #0c0b0b;
  z-index: 3;
  /* position: fixed; */
  /* left: 50%; */
  width: 600px;
  align-items: center;
  justify-content: center;
  align-self: center;
  display: flex;
  flex-direction: row;
  gap: 30px;
  border: none;
  box-shadow: none;
}
.login-form > img {
  object-fit: cover;
  height: 100px;
  object-position: 0 0;
}
@media (max-width: 1000px) {
  .login-form {
    padding: 40px;
    flex-direction: column;
    width: 70%;
    gap: 10px;
  }
  .login-form .header-and-caption-section {
    padding: 10px;
  }
}
.login-form .header-and-caption-section {
  display: flex;
  flex-direction: column;
}
.login-form .header-and-caption-section img {
  object-fit: unset;
  order: -1;
}
.login-form .login-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-basis: 100%;
  gap: 10px;
}
.login-form .login-wrapper label {
  color: #0c0b0b;
}

main .container {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 100vh;
}
