﻿.captcha {
    margin-top: 0.5em;
    display: block; /* sorgt dafür, dass es die volle Breite nutzen kann */
    width: 100%; /* nimmt 100% der Breite des übergeordneten Elements */
    height: auto; /* Höhe wird proportional zur Breite skaliert */ 
    display: block; 
    float:left; 
}

.logo_small {
    display: block;
    width: 100%;
    height:2em;
    background-image:url("../img/logo.png");
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
    margin:1em 0 1em 0;
}

body.farbanopie {
    filter: url(#farbanopie);
    filter: url(#deuteranopia);
    filter: url(#protanopia);
}
/*
#log_shield,
.shield{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--background-transparent-color);
    backdrop-filter: var(--shield-filter);
    box-shadow: 0px 0px 10px var(--main-txt-color);
    border:var(--light-border);
    border-radius: 0 0.5em;
    color: var(--main-txt-color);
    padding: 2em 2em 4em 2em;
    font-size: 1em;
    transition: all 0.3s ease;
    width: calc(100% - 6em);
    max-width: 400px;
    z-index: 1010;
}


.shield{
    padding:0;
    max-width:calc(400px + 4em);
}

    #log_shield form,
    .shield form {
        width: 100%;
        background-color: transparent;
        display: block;
        float: left;
    }

.titleband {
    border-radius: 0 0.5em 0 0;
    backdrop-filter: blur(120px) saturate(1);
    background-color: red;
    width: 100%;
    height: 1.5em;
    line-height: 1.5em;
    display: flex;
    padding: 0;
    background-color: var(--main-bgt-color);
    text-align: left;
}

.titleband a,
.titleband i {
    font-size:1em;
    width:1.5em;
    margin:0 0.25em;
    cursor: default;
    text-align:center;
    height:1.5em;
    line-height:1.5em;
    max-height:100%;
    opacity:0.6;
}

    .titleband a:hover,
    .titleband i:hover {
        opacity:1;
    }


    */
#overlay {
    display: flex;
    justify-content: center; /* horizontal zentrieren */
    align-items: center; /* vertikal zentrieren */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: grayscale(80%) blur(20px) brightness(50%);
    z-index: 10000;
    transition: all 0.7s ease;
    font-size: 1em;
    line-height: 1.1em;
    margin: 0;
    padding: 0;
    visibility: visible;
    opacity: 1;
}

/*#overlay #log_shield{
    background-color:var(--main-txt-color);
    color: var(--background-color);
    z-index: 810;
}

#overlay #log_shield a{
    color: var(--background-color);
}*/


#actions {
    display: flex;
    gap: 0.5em;
    width:100%;
}

#cookiebanner {
    border: solid 1px var(--text-color);
    text-align: left;
    min-width: 900px;
    z-index: 10010;
    color: var(--background-color);
    background-color: var(--main-txtt-color);
    height: auto;
    min-height: 0;
    padding-top: 1em;
}

#cookiebanner a{
    color:var(--background-color);
}

button {
    background-color: var(--main-on-color);
    border: none;
    border-radius: 0 0.4em;
    cursor: pointer;
    color: var(--background-color);
    display: block;
    font-size: 1.0em;
    font-weight: bold;
    height: 2.0em;
    padding: 0 1em;
    outline: none;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

#ck-decline,
#ck-save {
    color: var(--main-txt-color);
    background-color: var(--background-color);
}