/* ---------- FONTAWESOME ---------- */
/* ---------- http://fortawesome.github.com/Font-Awesome/ ---------- */
/* ---------- http://weloveiconfonts.com/ ---------- */
@import url(http://weloveiconfonts.com/api/?family=fontawesome);
/* ---------- ERIC MEYER'S RESET CSS ---------- */
/* ---------- http://meyerweb.com/eric/tools/css/reset/ ---------- */
@import url(http://meyerweb.com/eric/tools/css/reset/reset.css);
/* ---------- FONTAWESOME c0c0c0 ---------- */
[class*="fontawesome-"]:before {
    font-family: 'FontAwesome', sans-serif;
}

/* ---------- GENERAL ---------- */
* {
    box-sizing: border-box;
}

    *:before, *:after {
        box-sizing: border-box;
    }

body {
    background: #ccc;
    color: #ccc;
    font: 100%/1.5em "Varela Round", sans-serif;
    margin: 0;
}

input {
    background-image: none;
    border: none;
    font: 100%/1.5em "Varela Round", sans-serif;
    margin: 0;
    padding: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.container {
    left: 50%;
    position: fixed;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* ---------- LOGIN ---------- */
#login {
    width: 300px;
    background-color: rgba(255,255,255,0.2);
    /*opacity:0.5;*/
    /*border-radius: 0 0 20px 20px;*/
    padding: 20px 26px;
    /*margin-bottom:auto;
  margin-top:auto;
  margin-right:auto;
  margin-left:auto;*/
}

    #login h2 {
        background: #4EA863;
        border-radius: 20px 20px 0 0;
        color: #fff;
        font-size: 28px;
        padding: 20px 26px;
    }

        #login h2 span[class*="fontawesome-"] {
            margin-right: 14px;
        }

    #login fieldset {
        /*background: #fff;
  background-color: rgba(255,255,255,0.5);
  /*border-radius: 0 0 20px 20px;
  padding: 20px 26px;*/
    }

        #login fieldset p {
            /*color: #777;*/
            margin-bottom: 14px;
        }

            #login fieldset p:last-child {
                /*margin-bottom: 0;*/
            }

        #login fieldset input {
            /*border-radius: 3px;*/
        }

            #login fieldset input[type="email"], #login fieldset input[type="password"] {
                /*background: #eee;
  color: #777;
  padding: 4px 10px;
  width: 100%;*/
                /*font-size:small;*/
            }

            #login fieldset input[type="submit"] {
                /*background: #E31F26;*/
                background: #4a93ff;
                color: #fff;
                display: block;
                margin: 0 auto;
                padding: 4px 0;
                width: 100px;
            }

                #login fieldset input[type="submit"]:hover {
                    /*background: #E31F26;*/
                    background: #261df3;
                }

html {
    background: url(/images/loginbkg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
