@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,700,700italic);

/* =========================================== */
/*  Login Styles                               */
/* =========================================== */

body {
    text-align: center;
    background:url(../../images/background.jpg) no-repeat center center fixed;
    background-size: cover;
    overflow-x: hidden;
}

#login {
    padding-top: 140px;
    margin: 0 auto;
}

#login-content {
    position: relative;
    text-align: center;
    width: 450px;
    height: 340px;
    border-radius: 30px;
    background: #fff;
    box-shadow: #999 0 0 5px;
    display: inline-block;
}

#login-padding {
    position: relative;
    padding: 30px;
}

#login #diamond {
    width: 400px;
}

#login label,
.help-inline,
.help-span {
    display: none;
}

input[type="email"],
input[type="password"] {
    display: block;
    border: none;
    font-weight: 300;
    font-size: 24px;
    width: 100%;
    padding: 5px 0;
    margin: 0 0 10px 0;
    color: #424143;
    border-bottom: solid 1px #bbbbbb;
}

#btn-signin {
    position: absolute;
    top: 270px;
    right: 30px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

/* =========================================== */
/*  Responsive Styles (Small)                  */
/* =========================================== */
@media screen and (max-width: 767px) {
    body {
        text-align: left;
        background: #fff;
    }

    h4 {
        font-size: 18px;
        margin: 40px 0 60px 0;
    }

    #login {
        padding-top: 0;
    }

    #login #diamond {
        width: 260px;
    }

    #login-content {
        width: 100%;
        margin: 0 auto;
        border-radius: 0;
        box-shadow: none;
    }

    #btn-signin {
        position: relative;
        float: right;
        top: 175px;
    }
}