* {
  user-select: none;
  color: white;
}

body {
  position: relative;
  width: 100vw !important;
  height: 100dvh !important;
  background-color: #212529;
}

#photo-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: unset;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(70%);
  z-index: -1;
}

#login_div {
  position: absolute;
  right: 0;
  top: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

  height: 100%;
  width: 480px;
  /* neboli 25vw */
}

#logo-img {
  margin: 20px;
  user-select: none;
  width: 40%;
  /* 9vw */
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  width: 65%;
  /* 17.5vw */
}

form input {
  width: 100%;
  margin: 10px;
  padding: 15px;
  border: none;
  border-radius: 7.5px;
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

form input::placeholder {
  color: white;
}

form input:focus {
  outline: none;
}

form button {
  width: 100%;
  margin: 10px;
  padding: 15px;
  border: none;
  border-radius: 7.5px;
  background: #75a30a !important;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

#img-info {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 20px;
  font-size: 1rem;
  color: white;
  font-weight: bold;
}

@media (max-width: 768px) {
  #login_div {
    width: 100vw;
  }

  #logo-img {
    width: 40vw;
  }

  form input {
    width: 80vw;
  }

  form button {
    width: 80vw;
  }

  #img-info {
    font-size: 0.75rem;
  }
}
