html,
body,
#map {
  height: 100%;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Global styles */

input:focus {
  outline: none;
}

input[type="checkbox"] {
  transform: scale(1.3);
  accent-color: #ff653e;
  cursor: pointer;
}

label {
  cursor: pointer;
}

/* Login Page */

#login-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  padding: 10%;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  background-image: url("/images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background: black; */
  color: black; /* white */
}

/* #login-container video {
  max-height: 90%;
  max-width: 60%;
  height: auto;
} */

#login-container #login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 20%;
  min-width: 300px;
}

#login-container #login-form .logo {
  width: 150px;
  margin-bottom: 30px;
}

#login-container #login-form .input-field {
  padding: 10px;
  width: 100%;
  border-radius: 3px;
  background: transparent;
  color: black; /* white */
  border: 0.1px solid black; /* white */
}

#login-container #login-form .darkmode-toggle {
  width: 100%;
}

#login-container #login-form .login-button {
  padding: 10px;
  width: 100%;
  border-radius: 3px;
  border: none;
  color: white;
  margin-top: 10px;
  background: #ff653e;
  cursor: pointer;
}

/* Map Page */

#logo {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
  width: 150px;
}

#filters {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 5px;
}

#filters #filters-title {
  display: flex;
  justify-items: center;
  gap: 7px;
  cursor: pointer;
  padding: 15px 20px;
}

#filters #filter-options {
  display: none;
  padding: 0 20px;
  padding-bottom: 15px;
  flex-direction: column;
  gap: 7px;
}

#zoom {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
}

#zoom-in, #zoom-out {
  display: flex;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px;
  margin: 5px 0;
}

#map {
  width: 100vw;
  height: 100vh;
}
