body.login {
    display: flex;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

#loginform #wp-submit {
    background: #000 !important;
    border-color: #3c3c3c !important;
}
#loginform #wp-submit:hover {
    background: #3c3c3c !important;
}

body.login .privacy-policy-link {
	color: #000;
}

body.login .dashicons {
	color: #000;
}

body.login input:focus {
    border-color: #000;
    box-shadow: 0 0 0 1px #3c3c3c;
}

body.login button:focus {
	  border-color: #000 !important;
    box-shadow: 0 0 0 1px #3c3c3c !important;
}


/* Linke Seite mit Login-Formular */
.login-container {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #ffffff;
    position: relative;
}

/* Standard-Login-Box */
#login {
    width: 100%;
    max-width: 350px;
    padding: 20px;
}

/* Spracheinstellung direkt unter der Datenschutzerklärung */
.language-switcher {
    display: none !important;
}


/* Rechte Seite mit Hintergrundbild */
.login-bg {
    width: 50%;
    background: url('/wp-content/themes/hello-fototreff/images/login-bg.jpg') no-repeat center center;
    background-size: cover;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
    .login-container {
        width: 100%;
    }

    .login-bg {
        display: none;
    }
}

