/*Hell-/Dunkel-Modus*/
@media (prefers-color-scheme: light) { /*20250210 BF media-Zeile eingefügt*/
:root { color-scheme: light; }
}

@media (prefers-color-scheme: dark) {
:root { color-scheme: dark; 
	--bulma-body-background-color: unset !important; } /*20250211 BF eingefügt*/
	
body {  background-color: white; 
 	color: black !important; }	/*20250210 BF eingefügt*/

.button.is-outlined  { border: thin solid hsl(0, 0%, 71%); } /*20250211 BF eingefügt: hellgrau*/ 

}

/*dateispezifisch*/
.title, .subtitle {  		
   color: hsl(0, 0%, 21%);	
   font-family: sans-serif;
   font-weight: normal; 
   font-size: 0.9rem; 
   margin: 0.3rem 1.5rem 0rem 1.5rem; } /*für Seitentitel-Ausrichtung ob re un li*/

.login-content { margin: 0% 15% 1% 10%;}
	
.field { 
   max-width: 100%;
   margin-left:0%; }

.button { 
    justify-content: center !important; }	

.login-footer {
    display: flex;
    flex-wrap: wrap; /* Elemente umbrechen, wenn der Platz nicht ausreicht */
    justify-content: center; /*space-between;*/ 
    gap: 10px; /* Abstand zwischen den Buttons */
    margin-top: 1.8rem;
}

/* Buttons responsive anpassen */
.login-footer button {
    flex: 1 1 auto; /* Lässt die Buttons wachsen oder schrumpfen */
    min-width: 150px; /* Minimale Breite der Buttons */
    max-width: 200px; /* Maximale Breite */
}

/* Responsive Layout für kleine Viewports */
@media screen and (max-width: 600px) {
    .login-footer {
        flex-direction: column; /* Buttons untereinander anordnen */
        align-items: center;  /* Buttons in der Mitte ausrichten */
	gap: 3px; 
    }

    .login-footer button {
        width: 100%; /* Buttons nehmen die volle Breite ein */
    }
}

		

