/* Hintergrundbild für die Form-Cover anpassen */
.youzify-membership-form-cover {
    background-image: url('https://ketmarket.eu/wp-content/uploads/2024/05/Logofarbig.png') !important; /* Eigenes Bild hier einfügen */
    background-size: calc(100% - 75px); /* Bildgröße mit 20px Abstand links und rechts */
    background-position: center!important ; /* Bild zentrieren */
    background-repeat: no-repeat!important ; /* Bild nicht wiederholen */
    height: 250px !important ; /* Höhe des Containers */
    
}

/* Textstil des Titels ändern */
.form-cover-title {
    font-size: 26px !important; /* Schriftgröße */
    font-weight: bold !important; /* Fettschrift */
    color: #ffffff !important; /* Titeltextfarbe */
    /*text-align: center !important; /* Zentrierung des Textes */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.0) !important; /* Schattierung */
    border-radius: 0px !important; /* Abgerundete Ecken */
    display: block !important; /* Sicherstellen, dass das Element blockiert wird */
    margin: 0 auto !important; /* Zentrierung horizontal */
}

ul {
    margin: 0 auto; /* Centers the <ul> horizontally */
}

.youzify-membership-link-button {
    background-color: #005E86 !important;
}

/*// php code zum einbinden für functions.php oder plugin - Login und register seite von yousify auf KETMarket branden
function enqueue_custom_styles() {
    if (!is_admin()) { // Nur im Frontend
        $current_url = $_SERVER['REQUEST_URI'];

        // Login-Stil laden
        if (strpos($current_url, '/login') !== false) {
            wp_enqueue_style(
                'custom-login-style',
                get_stylesheet_directory_uri() . '/css/login-style.css',
                array(),
                filemtime(get_stylesheet_directory() . '/css/login-style.css')
            );
        }

        // Register-Stil laden
        if (strpos($current_url, '/register') !== false) {
            wp_enqueue_style(
                'custom-register-style',
                get_stylesheet_directory_uri() . '/css/register-style.css',
                array(),
                filemtime(get_stylesheet_directory() . '/css/register-style.css')
            );
        }
    }
}
add_action('wp_enqueue_scripts', 'enqueue_custom_styles');*/