:root {
  --primary-color: #1877f2;
  --background-color: #f4f7f6;
  --text-color: #333;
  --border-radius: 12px;
  --box-shadow: 0 4px 12px #0000001a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 20px;
  font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  display: grid;
}

.card {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  background: #fff;
  width: 100%;
  max-width: 800px;
  margin: 20px 0;
  padding: 30px;
}

#logo {
  color: var(--primary-color);
  text-align: left;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  font-size: 2.8em;
  text-decoration: none;
  display: flex;
}

#logo:before {
  content: "";
  background-image: url("favicon.31b65a3d.png");
  background-position: 50% 25px;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  width: 45px;
  height: 70px;
  margin-right: -5px;
  display: block;
}

#memberCountText {
  text-align: center;
  color: var(--primary-color);
  border-bottom: 2px solid #e0e0e0;
  margin-top: -10px;
  margin-bottom: 25px;
  padding-bottom: 5px;
  font-size: 1.25em;
  font-weight: 700;
  display: block;
}

h2 {
  color: var(--primary-color);
  border-bottom: 2px solid #eee;
  margin-top: 25px;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

p {
  margin-bottom: 15px;
}

ol {
  margin-bottom: 15px;
  margin-left: 20px;
  padding-left: 0;
}

li {
  margin-bottom: 5px;
}

#map-container {
  background-color: #e0e0e0;
  border-radius: 8px;
  width: 100%;
  height: 400px;
  margin: 25px 0;
  box-shadow: inset 0 0 8px #0000001a;
}

.map-key-control {
  z-index: 1000;
  background: #fff;
  border-radius: 6px;
  max-width: 100px;
  padding: 6px 8px;
  font-size: .9em;
  box-shadow: 0 2px 5px #0003;
}

.map-key-control h3 {
  color: var(--text-color);
  margin-bottom: 5px;
  font-size: 1.1em;
}

.legend-item {
  grid-template-columns: 3fr 1fr;
  margin-bottom: 5px;
  display: grid;
}

.key-icon {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-right: 8px;
  font-size: 24px;
}

.legend-item span {
  color: var(--text-color);
  line-height: 1.2;
}

.combined-icon-house {
  position: relative;
}

.combined-icon-van {
  font-size: 20px;
  position: relative;
  top: 12px;
  left: -20px;
}

#earlyAdopterForm {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  box-shadow: 0 4px 8px #0000000d;
}

label {
  color: var(--text-color);
  text-align: left;
  align-self: center;
  margin-bottom: 0;
  font-weight: bold;
  display: block;
}

input[type="text"], input[type="email"], input[type="number"], select {
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 10px;
  padding: 12px;
  font-size: 1em;
  transition: border-color .3s, box-shadow .3s;
}

input:focus, select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px #1976d233;
}

#city_input {
  width: 100%;
}

.autocomplete-container {
  position: relative;
}

.autocomplete-list {
  z-index: 1000;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 6px 6px;
  width: 100%;
  max-height: 300px;
  padding: 0;
  list-style: none;
  display: none;
  position: absolute;
  overflow-y: auto;
  box-shadow: 0 4px 6px #0000001a;
}

.autocomplete-list li {
  cursor: pointer;
  margin-bottom: 0;
  padding: 10px 12px;
  transition: background-color .2s;
}

.autocomplete-list li:hover {
  background-color: var(--background-color);
  color: var(--primary-color);
}

#formButtonContainer {
  width: 100%;
  max-width: 300px;
  margin: 10px auto 0;
}

#formButton {
  background-color: var(--primary-color);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  width: 100%;
  padding: 12px 20px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color .3s, transform .1s;
}

#formButton:hover {
  background-color: #1876f29e;
}

#formButton:active {
  transform: scale(.99);
}

#contactUsContainer {
  text-align: center;
}

.fa-tiktok {
  color: var(--text-color);
  font-size: 3em;
  transition: color .3s;
}

.fa-tiktok:hover {
  color: var(--primary-color);
}

#emailHref {
  text-decoration: none;
}

.ph-envelope {
  color: var(--text-color);
  font-size: 3em;
  transition: color .3s;
}

.ph-envelope:hover {
  color: var(--primary-color);
}
/*# sourceMappingURL=website.1303bb05.css.map */
