body {
    display       : flex;
    flex-direction: column;
    align-items   : center;
    background    : #F8F8F8;
    text-align    : center;
    font-size     : 16px;
    font-family   : 'Roboto', sans-serif;
    color         : #707070;
}

.logo__img {
    margin: 3rem;
}

h2 {
    text-transform: uppercase;
    font-size     : 33px;
    font-weight: 900;
}

form#frm-odhlasitForm {
    display       : flex;
    flex-direction: column;
    max-width     : 500px;
    align-items   : center;

}

input {
    -webkit-appearance: none;
    -moz-appearance   : none;
    appearance        : none;
    opacity           : 1;
}

input#frm-odhlasitForm-telefon {
    margin       : 0rem 1rem 1rem 1rem;
    padding      : 0.7rem;
    width        : calc(100% - 3rem);
    max-width    : 280px;
    border-radius: 5px;
    border       : 1px solid #EFEFEF;
    color        : #707070;
    outline      : none;
}

input[type="submit"] {
    padding   : 1rem;
    max-width : 13rem;
    background: #e1001a;

    border        : none;
    color         : #fff;
    border-radius : 5px;
    width         : 110px;
    text-transform: uppercase;

}

input[type="submit"]:hover {
    background: #EA0000;
    cursor    : pointer;
}