/* #ff8800	(255,136,0)
#ff5500	(255,85,0)
#f97900	(249,121,0)
#ff9b4f	(255,155,79)
#ff4912	(255,73,18) */
/*	Hex	RGB
#d11141	(209,17,65)
#00b159	(0,177,89)
#00aedb	(0,174,219)
#f37735	(243,119,53)
#ffc425	(255,196,37)*/

body{
    background: rgba(255,253,250,0.4) url(../img/bg.png) no-repeat fixed right top;
    margin:0;
    /*background-size: 100%;*/
}
header{
    width:100%;
    height:12vh;
    margin:0;
    padding:0;
    border-bottom: solid 1px #ff8800;
    box-sizing:border-box;
}
header img{
    height:8vh;
    margin:1vh;
}
#cuerpo{
    width:100%;
    height:80vh;
    border-bottom: solid 1px #ff8800;
    margin:0;
    padding:0;
    box-sizing: border-box;
}
button:focus,input:focus {
    outline:0;
}
#loginForm{
    background:#fff;
    width:450px;
    height:65vh;
    padding:120px 60px 0;
    margin:4em auto 1vh;
    box-shadow: rgba(0,0,0,0.1) 2px 2px 20px;
    box-sizing:border-box;
    position:relative;
}
button{
    padding: 4px 7px;
    margin:5px auto;
    width:100%;
    color: #fff;
    background: #f37735;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
    height:35px;
    border: none;
}
button:hover{
    box-shadow: rgba(0,0,0,0.1) 0px 5px 7px;

}
#logoLogin{
    width:100%;
    text-align:Center;
}
#logoLogin img{
    height:55px;
    margin:0 auto;
}
input{
    height:38px;
    padding:5px 10px;
    margin:5px auto;
    color:#3d3d3d ;
    font-size:16px;
    font-weight: 400;
    background: #FAFFBD;
    border:solid 1px #d0d0d0;
    box-shadow: 0px 0px 1px rgba(0,0,0,0.1);
    width:100%;
    box-sizing: border-box;
}
#mensajes{
/*    position:absolute;
    top:0;
    left:0;*/
    background:rgba(0,174,219,0.2);
    width:100%;
    height:38px;
    padding:5px 10px;
    margin:5px auto;
    color: #3d3d3d;
    display:none;
    box-sizing:border-box;
}
#wrapperContent div{
    width:80px;
    height:80px;
    box-sizing:border-box;
    padding:10px;
    text-align: center;
    float:left;
    display:block;
    margin:10px;
    border:solid 1px #d0d0d0;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    border-radius:5px;
}
#wrapperContent div:hover{
    
    box-shadow: 1                                                                                                                                       px 3px 10px rgba(0,0,0,0.4);
}
#wrapperContent div a{
    text-decoration:none;
    color:#3e3e3e;
}
#wrapperContent div a .icon{
    font-weight:bold;
    height:80%;
    font-size:100%;
    float:left;
    width:100%;
    float:left;
    display:block;
}
#wrapperContent div a .name{
    width:100%;
    font-size:15px;
    height:20%;
    float:left;
    display:block;
}
@media screen and (max-width: 768px) {

#loginForm{
        margin:5px auto;
        box-shadow: none;
        width:100%;
        padding:5vh 12%;
        height:79vh;
    }
}