body{
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 242, 255);
}

.pozadi{
    position: absolute;
    top: 0;
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
    background-image: url("photos/3.gif");
    background-size:cover;
    background-repeat: no-repeat;
    background-color: rgb(16, 116, 119);
    filter: blur(3px) brightness(0.5) saturate(1.5);
}

.nadpisH1{
    position: relative;
    text-align: center;
    font-family: "Big Shoulders", sans-serif;
    font-size: 50px;
    margin: 30px;
}

.formularDiv{
    position: relative;
    margin: auto;
    padding: 20px;
    width: 80%;
    display: flex;
    background-color: rgb(50, 50, 50);
    text-align: center;
    border-radius: 30px;
    overflow: hidden;
}

.formular{
    padding: 20px;
    width: 100%;
    min-width: 200px;
    overflow: hidden;
    color: rgb(0, 23, 58);
    background-color: rgb(0, 61, 92);
    box-shadow: 0px 0px 100px 1px rgb(0, 0, 0);
    border-radius: 10px;
}

.formular div{
    margin: 20px;

}

.formular div label{
    color: rgb(229, 229, 229);
    font-size: 30px;
    font-family: "Big Shoulders";
}

.formular div input{
    margin: auto;
    margin-top: 10px;
    width: 50%;
    min-width: 300px;
    max-width: 400px;
    height: 30px;
    font-size: 16px;
    border: 1px solid rgb(0, 162, 255);
    border-radius: 10px;
    background-color: rgb(225, 225, 225);
    transition: 0.3s ease;
    
}

.formular div input::placeholder{
    color: rgb(180, 180, 180);
    font-family: "Big Shoulders", sans-serif;
    letter-spacing: 1px;
    transform-origin: center;
    position: relative;
    transition: 0.2s ease;
}

.formular div input:focus::placeholder{
    transform: translateY(-25px);
    
}

.formular div input:focus{
    background-color: rgb(107, 210, 179);
    border: 1px solid white;
    outline: none;
}

.odeslat button{
    margin-top: 20px;
    font-family: "Big Shoulders", sans-serif;
    font-size: 40px;
    border: 1px solid rgb(0, 77, 0);
    border-radius: 10px;
    background-color: rgb(0, 121, 143);
    width: 50%;
    min-width: 150px;
    max-width: 300px;
    box-shadow: 0px 0px 10px 0.5px rgba(255, 255, 255, 0.226);
    transition: 0.3s ease;

}

.odeslat button:hover{
    background-color: rgb(0, 108, 161);
    border: 1px solid rgb(60, 60, 60);
    box-shadow: 0px 0px 20px 1px rgba(95, 95, 95, 0.23);
}


.odeslat button a{
    text-decoration: none;
    color: black;
    transition: 0.3s ease;
}

.odeslat button:hover a{
    color: rgb(0, 0, 0);
}

.login{
    position: relative;
    margin: auto;
    background-color: rgb(192, 192, 192);
    border-radius: 5px;
    text-decoration: none;
    color: black;
    display: inline-block;
    font-size: 14px;
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.412);
    top: 10px;
    padding: 4px;
}

.login:hover{
    background-color: rgb(224, 224, 224);
    text-decoration: underline;
}