body {
  background-image: url("../../media/background.jpg");
}
html {
  font-size: 100%;
}
body {
  font-size: 100%;
}
@media (max-width: 768px) {
  html {
    font-size: 90%;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 60%;
  }
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 20px;
  box-sizing: border-box;
}
form {
  background-color: hsla(0, 0%, 0%, 0.7) !important;
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
}
.button-group,
.input-group,
.select-group {
  margin-top: 10px;
  width: 100%;
}
input[type="text"],
select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: none;
  border-radius: 5px;
  color: #fff;
  text-align: center;
}
button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  margin-top: 10px;
}
button:hover {
  background-color: #0056b3;
}
@media (max-width: 768px) {
  body {
    background-image: none;
    background-color: #000;
  }
  #bg-video {
    display: none;
  }
  .container {
    height: 100vh;
    padding: 1px;
  }
  form {
    background-color: hsla(0, 0%, 0%, 0) !important;
    padding: 1px;
  }
  .button-group,
  .input-group,
  .select-group {
    margin-top: 1px;
    padding: 1px;
  }
  input[type="text"],
  select {
    padding: 1px;
    margin-top: 1px;
  }
  button {
    padding: 1px;
    margin-top: 1px;
  }
  .submit-btn {
    padding: 2px 10px;
    margin-top: 1px;
  }
}
.loading-icon {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  opacity: 0.8;
}
@media (max-width: 200px) {
  .custom-sm-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (min-width: 201px) {
  .custom-md-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}
