
/* 

Este codigo resetea el styling default en el buscador.


html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}



/*ESTE ES MI CÓDIGO*/


/*Se define el estilo de la clase main-wrapper, estas etiquetas se colocan
en la página a la que se le quiere dar estilo para identificarlas y que
tomen los parametros necesarios de este codigo*/

.section-default {          /*daremos estilo a lo que este dentro de la etiqueta "section-default"*/
    margin: 0 auto;
    /*width: 1000px;*/ 
    width: 1000px;
}




/*img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
*/ 
/*script para una imagen centrada*/ 

img {
  display: block;  /*envia a la imagen a la izquierda*/
  width: 120px;   
  height: 60px;
  float: left
}

a {                           /*se le da estilo a todos los anker tags de la pag*/
    text-decoration: none;   /*ayuda a quitar el texto subrayado de los links*/
}

body{
    background-color: #ccc;*/ /*background color de toda la pag: gris claro*/
   /*background-color: #6495ED; /*azul pálido*/
  }

header nav{       /*alinea dentro de la pagina a todos los elementos de navegacion del header*/
    width: 100%;     /* all the way from left to right from the browser*/
    height: 60px;
    background-color: #fff; /*background color del nav header: white*/
}

header nav ul {    
     float: left; /*navigation that has the home button is going to float to the left side of the wrapper*/
}

header nav ul li {    /*daremos estilo a los items listados en el nav header ul*/
    /* float: left;*/ /*navigation that has the home button is going to float to the left side of the wrapper*/
     float: right;
     margin-left: 10px; /*distancia entre cada item*/
     list-style: none; /*porque no queremos bullets en los items enlistados*/
}

header nav ul li a{    /*daremos estilo al texto*/
     font-family: arial;
     font-size: 16px;
     color: #111;     /*very dark grey*/
     line-height: 63px;
}

header .header-login {      /*daremos estilo a lo que esta dentro de la etiqueta nav-login*/
    float: right;
}

header .header-login form {      /*daremos estilo a la parte form que esta dentro de la etiqueta nav-login*/
    float: left;
    padding-top: 15px;   /*altura de los inputs que se ingresaran en la forma form será de 30px*/
}                        /*30px-60px del header nav(navigation)=30px de espacio entre arriba y abajo, osea 15px para cada lado*/


header .header-login form input {      /*daremos estilo a la ventana donde se ingresa la info de la form que esta dentro de la etiqueta nav-login*/
    float: left;
    width: 140px;   
    height: 30px;    /*altura de los inputs que se ingresaran en la forma form será de 30px*/
    padding: 0px 10px;  /* 0px de arriba y abajo y 10px de izq y derecha*/
    margin-right: 10px;  /*spacing between inputs*/
    border: none;
    background-color: #ccc;
    font-family: arial;
    font-size: 14px;
    color: #111;     /*very dark grey*/
    line-height: 30px;   /*misma altura que la del input*/
}        


header .header-login form button {      /*daremos estilo a al boton en la parte de form que esta dentro de la etiqueta nav-login*/
    float: left;
    width: 60px;   
    height: 30px;    /*altura de los inputs que se ingresaran en la forma form será de 30px*/
    margin-right: 10px;  /*spacing from the signup button*/
    border: none;
    background-color: #f3f3f3; /*very light grey color*/
    font-family: arial;
    font-size: 14px;
    color: #111;     /*very dark grey*/
    cursor: pointer;   /*mostrara el icono de la mano señalando al colocar el cursor sobre el boton*/
}        

header .header-login form button:hover {      /*daremos estilo al boton en la parte de form para que cambie de color al colocar el cursor sobre el*/  
    background-color: #6495ED; /*azul pálido*/
}        

header .header-login a{    /*daremos estilo al texto*/
    display: block;  /*para incluir altura y anchura del boton*/
    width: 60px;
    height: 60px;
    border: none;
    float: left;
    background-color: #fff;
     font-family: arial;
     font-size: 16px;
     color: #111;     /*very dark grey*/
     line-height: 63px;
     cursor: pointer;
}

header .header-signup a{    /*daremos estilo al texto*/
    display: block;  /*para incluir altura y anchura del boton*/
    width: 60px;
    height: 60px;
    border: none;
    float: left;
    background-color: #fff;
     font-family: arial;
     font-size: 16px;
     color: #111;     /*very dark grey*/
     line-height: 63px;
     cursor: pointer;
}


.wrapper-main{
 padding-top: 40px;
}

.wrapper-main h2{   /*se estiliza la h2 tag del main-container*/
 font-family: arial;
 font-size: 40px;
 color: #111;     /*very dark grey*/
 line-height: 50px;
 text-align: center;
}

/*signupStyling.php*/

.signup-form{
    width: 400px;
    margin: 0 auto;
    padding-top: 30px;
}

.signup-form input{
    width: 90%;        /*lo ponemos asi para que utilice el 100% de la anchura que ya se definió para la forma*/
    height: 40px;    
    padding: 0px 5%;   /*5% x 2 + 90% =100%*/
    margin-bottom: 4px;  /* separacion entre inputs*/   
    border: none;
    background-color: #fff;
    font-family: arial;
    font-size: 16px;
    color: #111;     /*very dark grey*/
    line-height: 40px;  /*mismo valor que la altura*/
}

.signup-form button{
    display: block;
    margin: 0 auto;
    width: 30%;        
    height: 40px;    
    border: none;
    background-color: #222;  /*dark grey color*/
    font-family: arial;
    font-size: 16px;
    color: #fff;     /*color of text white*/
    cursor: pointer;
}

.signup-form button:hover {
    background-color: #ccc; 
}

.signuperror {
    margin: 0 auto;
    font-family: arial;
    font-size: 18px;
    color: #DC143C;   
}


.signupsuccess {
    margin: 0 auto;
    font-family: arial;
    font-size: 18px;
    color: #7fff00;   
}


/*pruebaLogin.php*/

.login-status {
    float: right;
    font-family: arial;
    font-size: 14px;
    color: #111;     /*very dark grey*/
}

