/* GENERAL */ 
p {
    margin: 0;
}
a {
    color: #008337;
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
}
.mt-10 {
    display: inline-block;
    margin-top: 10px;
}
.mb-10 {
    display: inline-block;
    margin-bottom: 10px;
}

#main {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    min-height: 100vh;

    padding: 70px 10px;
    position: relative;
}
#main::before,
#main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;

    background-image: url(/images/syrex_pozadie_vzor.png);
    background-repeat: repeat-x;
    background-position-y: bottom;
    background-size: 20px;
}
#main::before {
    transform: rotate(180deg);
}

#innerBox {
    min-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: #fff;

    position: relative;

    /* padding: 0 40px 40px; */
}
#innerBox > img {
    height: 120px;
    margin-bottom: 20px;
}
#innerBox > div {
    width: 100%;
}

/* FORM */
form input {
    text-align: center;
}