@charset "UTF-8";

/************************************************************************
                              CSS DOCUMENT
************************************************************************/
/************************************************************************
                                UNIVERSAL
************************************************************************/

html {
    
}

body {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    color: #111;
    background-color: #fafafa;
    background-image: url(../images/textures/noise_fafafa.gif);
    margin: 0px;
    padding: 0px;
}


/************************************************************************
                               STRUCTURE
************************************************************************/



/************************************************************************
                                 LOGIN
************************************************************************/

#loginBox {
    position: absolute;
    left: 50%;
    margin-left: -150px;
    top: 50%;
    margin-top: -250px;
    width: 300px;
    padding: 25px;
    border: 1px solid #d9d9d9;
    box-shadow: 0px 1px 3px #dedede;
    border-radius: 4px;
    text-align: center;
    font-weight: 400;
    font-size: .8em;
    background-color: #fefefe;
}

#loginBox img {
    margin: 10px 0px 30px 0px;
}   

#loginBox input {
    background: none;
    border-radius: 3px;
    border: 1px solid #d9d9d9;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 12px 8px 12px;
    margin: 0px 0px 5px 0px;
    font-size: 1.2em;
    font-weight: 400;
    font-family: 'Open Sans', Arial, sans-serif;
}

#loginBox .button.primary {
    background: none;
    border-radius: 3px;
    border: 1px solid #a3cde8;
    box-shadow: 0px 2px 2px #f1f1f1;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 11px 8px 11px;
    font-weight: 600;
    color: #75a8d6;
    cursor: pointer;
    margin: 10px 0px 0px 0px;
}   

#loginBox .button.primary:hover {
    border: 1px solid #71a2ce;
    color: #4b8ebd;
}   

::-webkit-input-placeholder {
    font-weight: 300;
}


/************************************************************************
                              TYPOGRAPHY
************************************************************************/

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin: 0px;
    padding: 0px;
}

p { 
    font-size: 1em;
    line-height: 1.5em;
    margin: 1em 0em 1em 0em;
    color: #888;
}

.error-message p {
    color: #cd4a55;
    margin: 0em 0em 0em 0em;
}

/************************************************************************
                                COLUMNS
************************************************************************/





/************************************************************************
                                 LISTS
************************************************************************/



/************************************************************************
                                 LINKS
************************************************************************/

a {
    color: #4883a9;
    text-decoration: none;
}

a:hover {
    color: #00b0e7;
}

/************************************************************************
                                 FORMS
************************************************************************/

input:focus {
    outline: none;
}

/************************************************************************
                                 MEDIA
************************************************************************/

a img {
    outline: none;
    border: none;
}

/************************************************************************
                               ANIMATION
************************************************************************/




/************************************************************************
                             MISCELLANEOUS
************************************************************************/

.clearer {
    clear: both;
    height: 0px;
    overflow: hidden;
}

/************************************************************************
                                MOBILE
************************************************************************/




/************************************************************************
                                 HACKS
************************************************************************/



