body {
    font-family: 'Cabin', sans-serif;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
    color: #fff;
    background: url("../images/couple-sunset.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 70%;
    z-index: -10;
    float: right;
}

.overlay {
    background: rgba(255, 102, 204, 0.05);
    background: -webkit-linear-gradient(-45deg, rgba(255, 102, 204, 0.20), rgba(255, 102, 204, 00.05));
    background: -o-linear-gradient(-45deg, rgba(255, 102, 204, 0.20), rgba(255, 102, 204, 0.05));
    background: -moz-linear-gradient(-45deg, rgba(255, 102, 204, 0.20), rgba(255, 102, 204, 0.05));
    background: linear-gradient(-45deg, rgba(255, 102, 204, 0.20), rgba(255, 102, 204, 0.05));
    width:      100%;
    height:     100%;
    z-index:    -5;
    top:        0;
    left:       0;
    position:   fixed;
}

.title {
    font-family: 'Oregano', cursive;
    font-size: 8vw;
}

h1 {
    color: #ffffff;
    font-weight: 700;
    font-size: 40px;
}

h3 {
    color: #ffffff;
    font-style: italic;
    font-size: 25px;
}

/*
Loading section
*/
.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background:center no-repeat #ff66cc;
}

.no-js #loader {
    display: none;
}

.js #loader {
    position: absolute;
    left: 100px;
    top: 0;
    display: block;
}

.capatcha {
    text-align: center;

}

.g-recaptcha {
    display: inline-block;
    margin-top:10px;
    margin-bottom:10px;
}

/*
Header Section
*/
.header-logo-wrapper {
    margin: 30px 0px 0px 0px;
}

hr {
    width: 50%;
}

.subscribe-form-wrapper {
    margin: 30px 0px 20px 0px;
}

.subscribe-form-wrapper button {
    padding: 10px 35px;
    border-radius: 20px;
    border: 0;
    outline: none;
    font-style: italic;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    background-color: #ff66cc;
    transition-duration: 0.4s;
}

.subscribe-form-wrapper button:hover,
.subscribe-form-wrapper button:focus,
.subscribe-form-wrapper button:active:focus {
    outline: none;
    color: #ffffff;
    background-color: #ff66cc;
}

.subscribe-form-wrapper input {
    border: 0;
    border-radius: 20px;
}

.subscribe-form-wrapper input,
.subscribe-form-wrapper button {
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .form-subs-email {
        margin-left: 10px;
        margin-right: 10px;
        width:100% !important;
    }
}



/*
Footer and copyright section
*/
.copyright {
    margin: 30px 0px 20px 0px;
    color: #ffffff;
}



/*--- FORMS ---*/
/*
This is the bit you need.
*/
.subscribe-form-wrapper label{
    position:absolute;
    left:-9999px;
}
.subscribe-form-wrapper input:not([type=checkbox]),
.subscribe-form-wrapper textarea{
    font:inherit;
    resize:none;
    height: 38px;
    width: 234px !important;
}

@media only screen and (max-width : 768px) {
    body {
        width:100%;
        margin-top: 0;
    }
    .title {
        font-size: 12vw;
    }
    h1 {
        font-size: 24px;
    }
    h3 {
        font-size: 16px;
    }
}




/*--- THE MAGIC ---*/
/*
This is the best bit!
*/
[placeholder]{
    cursor:pointer;
}
[placeholder]:active,
[placeholder]:focus{
    cursor:text;
}