/* 
    Document   : Developingbox
    Created on : 11-mar-2014
    Author     : Juan Canet
    Description:
        Panel...
*/

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

/*////////// General //////////*/

@font-face {
   font-family: kelly;
   src: url(KellySlab-Regular.ttf) format('truetype');
 }
body{
    font-family: arial;
    /*background: #0c0d0e url(../images/moes.jpg) no-repeat;*/
    background: #0c0d0e;
    background-size: 100vw 100vh;
}

/*////////// Login //////////*/

#logo-home{
    background: url(../images/logo.svg) no-repeat;
    width: 141px;
    height: 175px;
    margin: 30px auto 20px auto;
    display: block;
    background-size: 141px;
}
 #title-home{
     font-family: kelly;
     margin: 0px auto;
     font-size: 36px;
     text-decoration: none;
     width: 405px;
     text-align: center;
 }
    #title-home a{
        text-decoration: none;
        color: #009fe3;
    }
#login{
    margin: 50px auto;
    max-width: 288px;
}
    #login input[type="text"], #login input[type="password"], #login input[type="email"] {
        font-family: arial;
        background: #303030;
        width: 190px;
        height: 42px;
        border: none;
        margin-bottom: 1px;
        font-size: 25px;
        color: #ffffff;
        float: left;
        padding-left: 9px;
        -webkit-transition: ease-in-out 0.5s;
        -moz-transition: ease-in-out 0.5s;
        transition: ease-in-out 0.5s;
        outline: none;
    }
    #login input[type="text"]:focus, #login input[type="password"]:focus, #login input[type="email"]:focus{
        -webkit-transform: translate(-10px);
        -moz-transform: translate(-10px);
        -transform: translate(-10px);
    }
    #login input[type="submit"]{
        font-family: arial;
        background: #303030;
        width: 97px;
        height: 85px;
        border: none;
        margin-left: 1px;
        font-size: 25px;
        color: #ffffff;
        outline: none;
    }
    #login input[type="submit"]:hover{
        background: #009fe3;
    }
    .registro{
        display: table;
        margin: 0 auto;
    }
    .error{
        text-align: center;
        padding: 8px;
        background: orange;
        display: table;
        margin: 20px auto 0 auto;
        font-weight: 600;
    }