/* CSS Reset*/
html { margin:0;padding:0;border:0; }
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section {margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline; list-style: none; }

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4em;
    text-align: left;
    background: #000 url("img/costanza.jpg") no-repeat center top;
    background-attachment: fixed;
    background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    color: #fff;
    -webkit-font-smoothing:antialiased;
}

img { max-width: 100%; height: auto; }

#imela {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
}

.container {
    max-width: 600px;
    margin-top: 120px;
    margin-left: 130px;
    margin-right: 20px;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.box {
    background: rgba(1,1,1,0.5);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 15px;
}

p { padding-bottom: 15px; }

.subtitle {
    padding: 10px 0 25px;
    font-size: 22px;
}

form { padding:  15px 0; }

input[type="text"],
input[type="email"] {
    padding: 10px;
    width: 35%;
    margin-right: 2px;
    margin-bottom: 5px;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
input[type="submit"] {
    padding: 11px 20px;
    background: #06b370;
    color: #fff;
    border: 1px solid rgba(1,1,1,0.3);
    border-radius: none;
}

#flake {
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -ms-filter: blur(3px);
    -o-filter: blur(3px);
    filter: blur(3px);
    cursor: pointer;
}


@media screen and (max-width: 740px) {
    .container {
        margin-top: 40px;
        margin-left: 20px;
    }
    #imela { display: none; }
}

@media screen and (max-width: 480px) {

    input[type="text"],
    input[type="email"] {
        padding: 10px;
        width: 100%;
    }

    body {
        background-attachment: inherit;
        background-position: -490px 0;
    }
}