* {
  font-family: "Montserrat", sans-serif;
  color: #2e264f;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.contact {
  height: 100vh;
  width: 100vw;
  background-image: url(./assets/MapaFondo.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.blur {
  z-index: 9;
  position: absolute;
  height: 100vh;
  width: 100vw;
  background-color: #000;
  opacity: 0.2;
}

.contact form {
  background-color: #fff;
  padding: 30px 40px 20px 30px;
  -moz-box-shadow: 2px 2px 21px 3px rgba(0, 0, 0, 0.75);
  border-radius: 8px;
  z-index: 99;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact form label {
  font-size: 0.875rem;
  text-align: left;
  margin-bottom: 8px;
  display: inline-block;
}

.contact form .input-custom,
.contact form select,
.contact form .textarea-custom {
  outline: 0;
  background-color: #f4f4f5;
  border: 0px;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.contact form button {
  padding: 10px 20px;
  background-color: #22c55e;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.contact form button:hover {
  background-color: #57e38b;
}

.check-custom {
  display: flex;
  align-items: start;
  padding: 5px;
  gap: 4px;
}

.check-custom .input {
  width: auto !important;
}

.label-custom input {
  display: flex;
}
.check-custom span {
  font-size: 12px;
  text-align: left;
}
@media (max-width: 768px) {
  .contact form {
    width: 90vw;
  }
}

.hidden {
  display: none !important;
}
