.container {
  width: 100%;
}

p {
  font-size: 12px;
}

.background-primary {
  background-color: var(--secondary-color) !important;
  font-family: Verdana, Geneva, Tahoma, sans-serif !important;
}

.form-control {
  height: 36px;
  background: #fff;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  border-radius: 2px;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.contactForm .form-control {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
}

.form-control:focus,
.form-control:active {
  border-color: var(--main-brand-color) !important;
}

.form-label {
  color: #000;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: left;
}

.btn.btn-primary {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #fff;
  width: 100px;
  border-radius: 0 !important;
}

.btn.btn-primary:hover {
  background-color: var(--main-brand-color);
}

.bi {
  font-size: 50px;
}

/* Honeypot-Feld (Spam-Schutz): visuell entfernt, aber für Bots befüllbar */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Statusmeldung nach Formularversand */
.contact-status {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 15px;
  text-align: center;
}

.contact-status.is-success {
  background-color: #e6f4ea;
  border-color: #b7dfc3;
  color: #1e6b38;
}

.contact-status.is-error {
  background-color: #fdecec;
  border-color: #f3c2c2;
  color: #a32626;
}

/* Media Query für Handys */

@media only screen and (max-width: 768px) {
  .container {
    width: 100% !important;
  }
  .contact-space {
    height: 10%;
  }
  .contact-space-footer {
    display: none;
  }
}

/* Media Query für Tablets */

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: 100% !important;
  }
  .contact-space {
    height: 10%;
  }
}
