
.start {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 87vh;
    background: url(/static/fotka.png) center/cover no-repeat;
}

.logowanie {
    background-color: #eaeaea; /* Dodaj tło z przezroczystością */
    padding: 20px;
    border-radius: 0px;
    text-align: center;
    width: 30%;
}

/* Dodaj styl do inputów, przycisku i innych elementów według potrzeb */
#username, #password, button {
    margin: 5px 0;
    padding: 10px;
    width: 100%;
}

/* Styl dla reCAPTCHA, może być dostosowany według potrzeb */
.g-recaptcha {
    margin: 10px 0;
}


div#komunikat {
    background: var(--czerwony);
    color: white;

}

div#komunikat  p {
    padding: 20px;
}
#password{
    border: none;
    border-bottom: solid var(--czerwony);
    width: 90%;
    font-style: italic;
    background-color: #eaeaea;
}
input#e-mail{
    border: none;
    border-bottom: solid var(--czerwony);
    width: 90%;
    font-style: italic;
    padding: 10px;
    background-color: #eaeaea;
}
.g-recaptcha {
    display: flex;
    justify-content: center;
}
button{
    background-color: var(--czerwony);
    border-radius: 35px;
    width: auto !important;
}
label{
    display: none;
}
.logowanie p{
    font-size: 10px;
    padding: 0px 38px;
}
.logowanie h2{
    font-size: 24px;
    font-weight: 900;
}
.logowanie i.fa-solid.fa-arrow-right {
    padding: 5px;
    border-radius: 50%;
    background-color: white;
    color: black;
    margin-right: 10px;
}
@media screen and (max-width:911px) {

    .logowanie{
        width: 70%;
    }
    .logowanie p {
        font-size: 8px !important;
        padding: 0%;
    }
    .logowanie h2 {
        font-size: 20px !important;
    }


}