.main-input-form {
    width: 550px;
    height: 400px;

    margin: 0 auto;
}

.landing-text {
    height: 240px;
    width: 550px;
    margin-top: 40px;
    text-align: center;
    line-height: 25px;

    font-size: 18px;
    color: white;
}

.main-input-form form {
    margin-top: 18px;
}

.main-input-form input {
    width: 100%;
    -webkit-border-radius: 5px;
    border-radius: 5px; 

    font-size: 20px;
}

.main-input-form input[type=text] {
    height: 44px;
    padding: 8px
}

.main-input-form input[type=submit] {
    padding:5px 15px; 
    background: orange; 
    border:0 none;
    cursor:pointer;

    height: 50px;

    margin-top: 30px;
}

.small-screen-button {
    display: none;
}

.terms-accept {
    margin: auto 0;
    display: block;
    text-align: center;

    color: #939292;
}

.terms-accept a {
    color: #bab8b8;
}

.landing-free-banner {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 30%;
    max-width: 200px;
}

.newsletter-guideline {
    text-align: center;
    color: grey;
}

.newsletter-guideline a {
    text-decoration: none;
    color: white;
}

@media only screen and (max-width: 1500px) {
    .main-landing {
        background-size: 120%;
    }
}

@media only screen and (max-width: 1200px) {
    .main-landing {
        background-size: 160%;
    }
}

@media only screen and (max-width: 900px) {
    .main-landing {
        background-size: 200%;
    }
}

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

    .main-landing {
        background-size: 230%;
    }

    .landing-text, .main-input-form {
        width: 400px;
        height: 330px;
    }

    .main-input-form input[type=submit] {
        display: none;
    }
    
    .small-screen-button {
        display: block !important;
    }

    .footer-wrapper {
        margin-top: 90px !important;
        color: white;
    }
    
}

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

    .main-landing {
        background-size: 300%;
    }

    .landing-text, .main-input-form {
        width: 320px;
        height: 420px;
    }

    .main-input-form form {
        margin-top: 30px;
    }

    .footer-wrapper {
        margin-top: 240px !important;
    }
}