/**
* Reset CSS
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/**
* Login template
*/


.fullscreen_post_bg {
    background-position: 50% 50%;
    background-size: cover;
    bottom: 0px;
    left: 0px;
    position: fixed;
    right: 0px;
    top: 0px;
}

.fullscreen_post_bg:after {
    bottom: 0px;
    content: "";
    left: 0px;
    position: fixed;
    right: 0px;
    top: 0px;
}
.fullscreen_post_bg:before {
    background: url('../imgs/bg.jpg') repeat scroll 0px 0px / 100% 100% transparent;
    bottom: 0px;
    content: "";
    left: 0px;

    position: fixed;
    right: 0px;
    top: 0px;
}

.wrapper{
    margin: 15% auto 0;
    position: relative;
    top: 50%;
    width: 650px;
    min-width: 650px;
    z-index: 5;
    padding: 15px;
    background: none repeat scroll 0 0 #f4f4f4;
    border-radius: 3px;
    background: rgb(0, 0, 0);
    /* RGBa with 0.6 opacity */
    background: rgba(0, 0, 0, 0.6);
}

.app_name, .app_text {
    display: inline-block;
    color: #FFFFFF;
    font-family: "Exo",sans-serif;
    font-size: 38px;
    font-weight: 200;
    width: 340px;
    min-width: 340px;
    margin-bottom: 12px;
    vertical-align: top;
    margin-top: 32px;
}
.app_text{
    margin-top: 0;
}

.app_text p{
    font-size: 15px;
    padding-right: 15px;
    text-align: justify;
}

.app_name span, .app_text span{
    color: #5379FA !important;
}

.app_login, .app_forget{
    display: inline-block;
    width: 300px;
    min-width: 300px;
    vertical-align: top;
}

.app_forget{
    margin-top: 20px;
}

input[type="text"], input[type="password"], input[type="submit"]{
    display: block;
    margin-bottom: 8px;
    width: 100%;
}

input[type="text"], input[type="password"] {
    width: 290px;
    height: 32px;
    background: none repeat scroll 0% 0% transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    color: #FFF;
    font-family: "Exo",sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding: 4px;
}

input[type="password"]:focus, .login input[type="text"]:focus{
    outline: none;
    border: 1px solid rgba(255,255,255,0.9);
}

input[type="submit"]{
    width: 300px;

    background: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    border-radius: 2px;
    color: #a18d6c;
    font-family: 'Exo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    padding: 6px;
    margin-top: 10px;
}

input[type="submit"]:hover{
    opacity: 0.8;
}

input[type="submit"]:active{
    opacity: 0.6;
}
input[type="submit"]:focus{
    outline: none;
}

.app_login p .right{
    text-align: right;
    width: 50%;
    float: left;
}

.app_login p .left{
    text-align: left;
    width: 50%;
    float: left;
}

.app_login p label{
    color: #FFFFFF;
    font-family: 'Exo', sans-serif;
    font-size: 16px;
    cursor: pointer;
}

.app_login p input{
    box-shadow: none;
    border: 1px solid #FFFFFF;
    margin: 0;
    margin-left: 12px;
    font-size: 11px;
}

.app_login p a{
    text-decoration: none;
    color: #5379FA;
    font-family: 'Exo', sans-serif;
}

.app_login p a:hover{
    text-decoration: underline;
}

.clear{
    clear: both;
    display: block;
}
.msg_static {
    border-style: solid;
    border-width: 1px;
    font-size: 14px;
    padding: 5px;
    font-family: 'Exo', sans-serif;
}

.msg_alert {
    background-color: #f4f4f4;
    border-color: #ddd;
    border-radius: 3px;
    opacity: 0.6;
    text-align: center;
}

a.blue-link{
    margin-top: 12px;
    color: #5379fa;
    font-family: "Exo",sans-serif;
    text-decoration: none;
}
a.blue-link:hover{
    text-decoration: underline;
}