/*
Author: Daniel Henriquez
Twitter: @dhenriquez
website: http://www.dhenriquez.cl
*/

.login {
    width: 300px;
    height: 170px;
    position: fixed;
    top:0px;
    right:25px;

    overflow: hidden;
    background: #101010;

background: #122105; /* Old browsers */
background: -moz-linear-gradient(top,  #122105 0%, #36452b 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#122105), color-stop(100%,#36452b)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #122105 0%,#36452b 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #122105 0%,#36452b 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #122105 0%,#36452b 100%); /* IE10+ */
background: linear-gradient(to bottom,  #122105 0%,#36452b 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#122105', endColorstr='#36452b',GradientType=0 ); /* IE6-9 */

    border-radius: 6px;
    margin: 25px auto;
    box-shadow: 0px 0px 50px rgba(0,0,0,1);
}

.login .title {
    width: 298px;
    height: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 14px;
    text-align: center;
    color: #4fbf4f;
    font-weight: bold;
    background: #000000;
    border: #2d2d2d solid 1px;
    margin-bottom: 10px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    font-family: Arial;
}

.login form {
    width: 240px;
    height: auto;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.login form input[type=text], .login form input[type=password] {
    width: 270px;
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 50px;
    border: none;
    color: #bfbfbf;
    background: #141414;
    outline: none;
    margin: 0;
}

.login form input[type=text] {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-top: #0b0b0b solid 1px;
    background: #141414 url(images/111-user.png) 10px center no-repeat;
}

.login form input[type=password] {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top: #0b0b0b 1px solid;
    border-bottom: #353535 1px solid;
    background: #141414 url(images/54-lock.png) 10px center no-repeat;
}

.login .olvido {
    width: 240px;
    height: auto;
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 10px;
    text-align: center;
}

.login .olvido .col {
    width: 50%;
    height: auto;
    float: left;
}

.login .olvido .col a {
    color: #fff;
    text-decoration: none;
    font: 12px Arial;
    font-weight: bold;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}