/**   stejné pro celý dokument   **/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;

    background-color: transparent;
}
body{ 
    width: 100%;
    background-color: #FFFFCC;
}



/**  Ddekorativní obrázek   **/
#obrazek{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 390px;

    background-image: url("dokumenty/foto_uvod/1.png");

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}



/**/
/***   Boční panel s přihlašováním   ***/
/**/
#bocniPanel{
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 400px;

    color: #FFFFCC;
    background-color: #990000;
    box-shadow: 0px 0px 10px 5px #000000B0;
}
/*hlavní nadpis*/
h1{
    margin-bottom: 80px;
    padding: 30px;

    font-size: 32px;
    text-align: center;
    text-shadow: 1px 1px 5px #000;

    background-color: #990000;
}
/*popis aktualizace*/
h2{
    position: absolute;
    bottom: 20px;
    right: 20px;
    
    font-size: 16px;
    font-weight: normal;
}

/**   Přihlašovací okno   **/
#prihlasovani{
    height: 255px;
    padding: 35px;

    border-radius: 10px;
    background-color: #990000;
}
/*pole s texty*/
.pole{
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 12px;

    font-size: 18px;

    outline: 0;
    border-radius: 6px;
    border: solid 3px #500;
    background-color: white;
}
.pole:focus{
    border: solid 3px rgb(223, 137, 8);
}
/*odesílací tlačítko*/
#odeslat{
    text-align: center;
    color: #FFFFCC;

    border: solid 3px rgb(223, 137, 8);
    background-color: #700000;
    cursor: pointer;
}
#odeslat:hover{
    padding: 10px;
    font-weight: bold;
    border: solid 4px rgb(223, 137, 8);
    background-color: #600000;
}



/**   chybová hláška   **/
h6{
    display: block;
    position: absolute;
    top: 50px;
    left: 50px;

    padding: 25px;
    border-radius: 10px;

    color: black;
    font-size: 25px;
    text-align: center;

    background-color: #FF0000B0;

    animation-name: zmizeni;
    animation-duration: 2s;
    animation-delay: 3s;
    animation-fill-mode: forwards;
}
@keyframes zmizeni {

    100% {
        color: #0000;
        background-color: #0000;
    }
}



/**   tlačítko pro návrat na hlavní stránku   **/
a{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 260px;
    padding: 18px;
  
    color: #FFFFCC;
    font-size: 18px;
    font-weight: normal;
    text-decoration: none;
    text-align: center;

    box-shadow: 0px 0px 10px 5px #000000B0;
    border-radius: 0px 8px 0px 0px;
    background-color: #990000;
}
a:hover{  
    font-weight: bold;
    background-color: #700000;
}















/***   změna při malém rozměru okna   ***/
@media only screen and (max-width: 800px){
    #obrazek{
        display: none;
    }

    #bocniPanel{
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;

        background-color: transparent;
    }

    h2{
        bottom: 90px;
        color: #000;
    }

    h6{
        top: 20px;
        left: 20px;
        right: 20px;
    }

    a{
        width: 100%;
        border-radius: 0;
    }

    #prihlasovani{
        margin: 50px;
    }
}

/***   změna při velkém rozměru okna   ***/
@media only screen and (min-width: 2000px){
    #obrazek{
        right: 490px;
    }

    #bocniPanel{
        width: 500px;
        box-shadow: 0px 0px 20px 8px #000000B0;
    }

    h1{
        font-size: 40px;
        padding: 60px;
    }

    #prihlasovani{
        padding: 60px;
    }
}