body {
    font-size: 62.5%;
    min-height: 100%;
    background-size: cover;
    background-image: url("http://5imilar.com/assets/images/5IMpalm.jpg");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-color: black;
}

@keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

#newsletterform {
    font-family: 'Raleway', sans-serif;
    margin: 0 auto;
    max-width: 780px;
    min-width: 320px;
    display: block;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
}

#newsletterform .wrap {
    padding: 50px 40px;
}

#newsletterform h1 {
    font-family: 'Michroma', sans-serif;
    letter-spacing: 30px;
    display: block;
    font-size:45px;
    font-weight:400;
    line-height:2.5;
    color:#fff;
    text-transform: uppercase;
    text-align: center;
    padding-bottom:40px;
    margin: 0 auto 20px auto;
    border-bottom:.5px solid white;
    width:60%;
    animation-duration: 1.5s;
    animation-name: fadein;
    opacity: 0;
    animation-fill-mode: forwards
}

#newsletterform h3 {
    font-family: 'Raleway', sans-serif;
    display: block;
    font-size:26px;
    font-weight:400;
    line-height:1.2;
    color:#fff;
    text-transform: uppercase;
    text-align: center;
    padding-bottom:20px;
    margin: 0 auto 30px auto;
    border-bottom:.5px solid #fff;
    width:60%;
    opacity: 0;
    animation-delay: 1s;
    animation-duration: 1s;
    animation-name: fadein;
    animation-fill-mode: forwards
}

#newsletterform p {
    font-size:14px;
    line-height:26px;
    margin-bottom:25px;
    color:#fff;
            opacity: 0;
    animation-delay: 1s;
    animation-duration: 1s;
    animation-name: fadein;
    animation-fill-mode: forwards
}

#newsletterform input {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight:500;
    display: block;
    width:55%;
    background:#fff;
    color:#888;
    padding:15px;
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto 12px auto;
    border:2px solid #fff;
    outline:0;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    animation-delay: 2s;
    animation-duration: 1s;
    animation-name: fadein;
    animation-fill-mode: forwards

}

#newsletterform input:focus {
    border:2px solid #ddd;
}

#newsletterform input[type="submit"] {
    background:#00ace6;
    color:#fff;
    width:30%;
    padding:13px;
    cursor: pointer;
    margin-bottom:0;
    border:none;
    opacity: 0;
    animation-delay: 2.5s;
    animation-duration: 1s;
    animation-name: fadein;
    animation-fill-mode: forwards
}

#newsletterform input[type="submit"]:hover {
    background:#ffd633;
    color:#444;
    opacity: 0.8;
}

#newsletterform .arrow {
    display: inline-block;
    background: url("../images/arrow.png") no-repeat;
    width: 139px;
    height: 48px;
    position: absolute;
    left: 120px;
    top: 520px;
    opacity: 0;
    animation-delay: 3.3s;
    animation-duration: 1s;
    animation-name: fadein;
    animation-fill-mode: forwards
}

#newsletterform #response {
    color: #fff;
    font-size: 1.4em;
    height: 25px;
    margin: 0 auto;
    padding-top: 15px;
    text-align: center;
    width: 320px;
}

#newsletterform #response p {
    margin: 0
}

#newsletterform .loading {
    background: url("../images/loading.gif") no-repeat center 20px;
}

@media only screen and (max-width:769px) {

    #newsletterform .wrap {
        padding: 40px 25px;
    }

    #newsletterform .arrow {
        display: none;
    }

    #newsletterform input {
        width: 100%;
        margin-bottom: 7px;
    }

    #newsletterform input[type="submit"] {
        width: 100%;
        padding: 16px;
    }

}

@media only screen and (max-width:600px) {

    #newsletterform h1 {
        width: 100%;
        letter-spacing: 13px;
    }

    #newsletterform h3 {
        width: 100%;
    }

}