
/* Für die vertikale Anordnung von Label und Container */
.form-group {
    display: flex;
    flex-direction: column; /* Ordnet Kinder vertikal an */
    margin-bottom: 1rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    width: 100%; /* Oder so, dass es das Label über dem Input positioniert */
}

/* Neuer Container für Input und Icon */
.password-input-container {
    position: relative; /* Basis für absolute Positionierung des Icons */
    width: 100%; /* Stellt sicher, dass der Container die volle Breite einnimmt */
    display: flex; /* Optional: Um sicherzustellen, dass der Input die volle Breite des Containers ausfüllt */
    align-items: center; /* Zentriert das Icon vertikal, falls es nicht perfekt passt */
}

.password-input-container input {
    width: 100%; /* Input füllt den verfügbaren Platz aus */
    padding-right: 40px; /* Platz für das Icon lassen, damit Text nicht überlappt */
    /* Behalten Sie Ihre anderen Input-Stile bei (padding, border, etc.) */
}

.password-toggle-icon {
    position: absolute; /* Absolut innerhalb des password-input-container positionieren */
    right: 10px; /* Abstand vom rechten Rand des Inputs */
    cursor: pointer;
    color: #6c757d; /* Eine dezente Farbe */
    font-size: 1.2em; /* Größe des Icons anpassen */
    line-height: 1; /* Wichtig, damit das Icon sauber vertikal zentriert wird */
    display: flex; /* Für bessere vertikale Zentrierung des Icons selbst */
    align-items: center;
    justify-content: center;
    height: 100%; /* Macht das Icon anklickbarer in der Höhe des Inputs */
    top: 0;
}

.password-toggle-icon:hover {
    color: #007bff; /* Hover-Effekt */
}


.registration-container { max-width: 400px; margin: 50px auto; padding: 20px; font-family: sans-serif; background: #f9f9f9; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.social-auth { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.btn-social { padding: 10px; border: none; border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: bold; }
.google { margin-top: 5px;  background: #007AFF; border: 1px solid #ddd; color: #fff; }
.apple { background: #000; color: #fff; }
.samsung { background: #034EA2; color: #fff; }
.divider { text-align: center; border-bottom: 1px solid #ddd; line-height: 0.1em; margin: 20px 0; }
.divider span { background:#f9f9f9; padding:0 10px; color: #888; }
.password-wrapper { position: relative; }
.btn-primary { width: 100%; padding: 12px; background: #007bff; color: white; border: none; border-radius: 6px; margin-top: 15px; cursor: pointer; }

.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    /* Höhe anpassen, damit beide Badges gleich groß wirken */
    height: 60px;
    margin-top: 15px;
    margin-right: 8px;
    border-radius: 10px; /* Optional: Abgerundete Ecken */
    overflow: hidden;
    transition: transform 0.2s ease; /* Sanfter Effekt beim Hovern */
}

.store-button img {
    height: 60px;
    width: auto;
    object-fit: contain; /* PNG wird sauber skaliert, ohne Verzerrung */
}

/* Hover-Effekt für Interaktivität */
.store-button:hover {
    transform: translateY(-2px); /* Hebt den Button leicht an */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Spezifische Anpassung, falls die PNGs unterschiedliche Proportionen haben */
.apple-button img {
    background: #fff;
}

.google-button {
  background: #ccc;
}

.google-button img {
  background: #fff;
}

.stats-grid-btn {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5px;
}

