body
{
    margin:0;
    padding:0;
    left:0;
    top:0;
    font-family: 'Oswald', sans-serif;
    overflow-x: hidden;
}
header
{
    background: #e85784;
    width: 100%;
    height: 80px;
}
header>.container
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.content
{
    width: 100%;
    min-height: calc(100vh - 80px);
    background:url('../images/bg.jpg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}
h1,h2,h3,h4
{
    margin:0;
}
h1
{
    padding: 15px;
    color: #e85784;
    font-weight: 400;
}
h2
{
    margin:20px;
    font-weight: 300;
    color: #555555;
    font-size: 30px;
}
.white_content
{
    width: 100%;
    padding: 10px;
    background:white;
    box-sizing: border-box;
    z-index: 1;
    position: relative;
    font-weight: 300;
}
.white_content p
{
    color: #4e4e4e;
    font-size: 19px;
    padding: 30px 0 15px;
}
.container
{
    width: 1100px;
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
}
/* TIMER */
.timer
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    position: relative;
}
.timer>div
{
    margin: 15px;
    width: 100px;
    color: #e85784;
    font-weight: 500;
}
.timer>div>div
{
    background: white;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 35px;
    color: #e85784;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 54px -18px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 54px -18px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 54px -18px rgba(0,0,0,0.75);
    margin-bottom: 10px;
    font-weight: 700;
}
/* Wave */
.wave
{
    position: relative;
}
.wave::before {
    content: " ";
    width: 110%;
    background: white;
    height: 200px;
    position: absolute;
    bottom: -100px;
    left: -5%;
    z-index: 0;
    border-radius: 50%;
}

/* Formularz */
.wrap-field>*
{
    display: block;
}
.wrap-field
{
    margin: 10px;
}
.wrap-field>input[type=text]
{
    width: 300px;
    margin: 0px auto;
    padding: 7px 10px;
    border-radius: 5px;
    border: none;
    font-size: 15px;
    background: #ffffffc4;
    text-align: center;
}
.wrap-field>input:active,
.wrap-field>input:focus,
.wrap-field>input:hover
{
    outline: none;
}
input[type=submit]
{
    font-family: 'Oswald', sans-serif;
    background: #e85784;
    color: white;
    border: none;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 10px 70px;
    border-radius: 5px;
}
/* MOBILE */
@media (max-width: 600px) {
    .content
    {
        width: 100%;
        min-height: calc(100vh - 80px);
        background:url('../bg.jpg');
        background-position: center;
        display: flex;
        flex-direction: column;
    }
    .container
    {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .wrap-field>input
    {
        width: calc(100% - 20px);
        margin: 10px;
        box-sizing: border-box;
    }
}
/* ERROR */
.error
{
    color: red;
    font-size: 15px;
    display:none;
}