/* ---------- logowanie ------------ */

#loginBox {
    display:none;
    position: fixed;
    inset: 0;         /* skrót za top:0; right:0; bottom:0; left:0; */
    margin: auto;     /* centrowanie w obu osiach */
    width: 420px;
    max-width: 90%;
    height: fit-content;  /* ważne */
    padding: 0px 30px;
    border: solid 6px rgb(141,154,166);
    border-radius:0.8ex;
    background-color: #fff;
    font-size: 1.2em;
    line-height:160%;
    box-shadow: 5px 5px 10px rgb(178,187,195);
    z-index: 6;
}
#loginBox input {
	width: 120px;
}
#loginBox img {
	float:right; margin-top:12px; margin-right:-20px;
}

/* ---- COOKIE ALERT ---- */

.AAcookieBox {
    position: fixed;
    inset: 0;
    margin: auto;
    width: 420px;
    max-width: 90%;
    height: fit-content;
    padding: 0px 30px;
    border: solid 6px rgb(141,154,166);
    border-radius:0.8ex;
    background-color: #fff;
    font-size: 1.2em;
    line-height:160%;
    box-shadow: 5px 5px 10px rgb(178,187,195);
    z-index: 7;   /* 1 więcej niż loginBox */
}

.AAcookieMessage {
    font-size: 0.95em;
    margin: 20px 0;
}

.AAcookieButton {
    display:block;
    width: 80%;
    margin: 15px auto 25px auto;
    padding: 8px 12px;
    font-weight:bold;
    border-radius:0.8ex;
    border:1px dotted #666;
    background-color: rgb(255, 228, 196);
    text-align:center;
    cursor:pointer;
}

