body {
  font-size: 16px;

  --color-brand: #ed1b31;
}

button {
  border-radius: 5px;
  color: #fff;
  background: #898989;
  padding: 10px 16px;
  border: none;
}

.navbar-nav {
  gap: 16px;
}

.nav-link {
  padding-left: 0px !important;
  padding-right: 0px !important;
  font-size: 16px !important;
}

.nav-item.active .nav-link {
  color: var(--color-brand) !important;
}

.gap-4 {
  gap: 16px;
}

.text-brand {
  color: var(--color-brand);
}

.query-types {
  display: flex;
  gap: 16px;
}

.query-type {
  padding: 16px 8px;
  background: #898989;
  color: white;
  border-radius: 8px;
  text-align: center;
}

.query-type:hover {
  color: white;
}

.query-type.active {
  background: linear-gradient(to left, #ef717e, #ed1c31);
}

.search-result-banner {
  height: 120px;
  text-align: center;
  background-color: #d6272e;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property {
  display: flex;
  gap: 1rem;
}

.property-name {
  min-width: 100px;
}

.container-mobile {
  max-width: 500px;
  padding: 0px 16px;
  margin: 0px auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form > div {
  display: flex;
  gap: 8px;
}

form label {
  min-width: 80px;
}

form input {
  flex-grow: 1;
  outline: none;
  border: 1px solid #7a7a7a;
  border-radius: 2px;
}

form button {
  margin-top: 16px;
  min-width: 250px;
}

form button:hover {
  background-color: var(--color-brand);
}

form .required::after {
  content: " *";
  color: red;
}

@media screen and (max-width: 576px) {
  .navbar-nav {
    margin-top: 16px;
    gap: 4px;
  }
}
