
/*--------------------------------------------------------------
# Anmeldung Habeg
--------------------------------------------------------------*/

/*  <!--Für "Tabelle"--> */

    .form-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      border-color: #DEE2E6;
    }

    .table {
      width: 100%;
    }

     .form-control:focus, .form-select:focus {
    border-color: #00937a !important; /* Grün */
    box-shadow: none !important; /* Kein blauer Shadow */
    outline: none !important;     /* Kein zusätzlicher Rand */
  }


/*<!--Für "Links wie Datenschutz, Grafik neu laden, Bitte auswählen, placeholder, Ihre Nachricht"-->         */


  /* Standard-Style (für Desktop) */
.form-label a,
.mt-2 a {
  color: #555;
  text-decoration: underline;
  text-decoration-style: dotted; /* Desktop: gepunktet */
  transition: all 0.2s ease-in-out;
}

/* Hover-Effekt auf Desktop */
.form-label a:hover,
.mt-2 a:hover {
  color: #00937a;
}

/* Style speziell für Smartphones */
@media (max-width: 768px) {
  .form-label a,
  .mt-2 a {
    text-decoration-style: dotted; /* Mobile: normale Unterstreichung */
  }
}

  .form-label {
    font-size: 16px; /* Schriftgröße */
    color: #444444;   /* Schriftfarbe (z.B. Blau) */
  }

  .form-select {
    font-size: 14px;
    color: #595c5f; /* Textfarbe innerhalb des Dropdowns */
  }

  input::placeholder {
    color: #595c5f;       /* Farbe des Platzhalters */
    font-size: 14px;      /* Schriftgröße des Platzhalters */
   /* font-style: italic; Optional: kursiv */
  }

  .custom-textarea::placeholder {
    color: #595c5f;
    font-size: 14px;
  }
 