

/* Style the input elements and the submit button */
input[type="text"], input[type="submit"] {
    width: 100%;
    padding: 12px;
    margin-top: 20px; /* Abstand nach oben */
    display: block; /* Block-Element für bessere Zentrierung */
    border: 1px solid #ccc;
    box-sizing: border-box;
}


/* Add margins to the checkbox */
input[type=checkbox] {
  margin-top: 15px;
    margin: 10px 0;
      width: 20px;
    height: 20px;
}

input[type=submit] {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #333;
  height: 50px; /* Höhe des Buttons anpassen */
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-align: center;
}


input[type=submit]:hover {
   background: #333;
        color: #fff; }
}


.privacy_accept {
padding-top: 250px;
padding-right: 250px;
}

#privacy_accept {
  font-family: Arial, sans-serif; /* Schriftart */
  font-size: 14px; /* Schriftgröße */
  color: #333; /* Textfarbe */
  line-height: 1.5; /* Zeilenhöhe */
  display: block; /* Macht das Label zu einem Blockelement */
  height: auto; /* Automatische Höhe, damit sich der Text nicht abschneidet */
  padding: 10px; /* Innenabstand für besseren Look */
  background-color: #f9f9f9; /* Hintergrundfarbe */
  border-radius: 5px; /* Abgerundete Ecken */
}

/*--------------------- 4.19.Modals -------------------- */
/* Modals */
.modal-backdrop {
  background-color: #333; }
  .modal-backdrop.show {
    opacity: .4; }

.modal-body {
  padding: 0; }
  .modal-body .close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem; }

.modal-content {
  border: none;
  box-shadow: 5px 10px 16px rgba(51, 51, 51, 0.05), -5px 10px 16px rgba(51, 51, 51, 0.05); }

.close {
  font-weight: normal;
  font-size: 1.8rem;
  color: #666666;
  opacity: 1;
  transition: all .3s; }
  .close:hover, .close:focus {
    color: #c96; }

@media screen and (min-width: 768px) {
  .modal-dialog {
    max-width: 575px; } }


/* Styling für das Modal */
.modal-dialog {
    max-width: 600px;
    margin: 1.75rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.modal-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-body {
    padding: 20px;
}

.close {
    font-size: 0.1rem;

    opacity: 0.001;
}

.close:hover {
    opacity: 1;
}

/* Tabs */
.nav-pills {
    margin-bottom: 20px;
}

.nav-link {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    border-radius: 0;
    border: none;
    padding: 10px;
}

.nav-link.active {
    background-color: #007bff;
    color: #fff;
}

.nav-link:hover {
    background-color: #0056b3;
}

/* Formular */
.form-box {
    width: 100%;
}

input[type="text"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
}

input[type="checkbox"] {
    margin-right: 10px;
}



.inputSubmit:disabled {
    background-color: #d3d3d3;
    cursor: not-allowed;
}



label {
    font-size: 14px;
    color: #666;
}

/* Zentrierung von Text */
center {
    margin-bottom: 20px;
}

/* Responsivität */
@media (max-width: 768px) {
    .modal-dialog {
        width: 90%;
    }
    .nav-pills {
        font-size: 14px;
    }
}
