/* CSS Layout X-Admin - by Giuseppe Goffredo Ventura */
#loginpanel {
    width: 300px;
    margin: 50px auto auto auto;
    display: inline-block;

}


body {

}

.imgresponsive {
    width: 100%;
    height: auto;
}

/* Header logo */


header {
    width: 100%;
    height: 110px;
    background-color: #64C832;
    margin: auto;
    text-align: center;
    position: relative;
}

.headlogo {
    width: 100px;
    height: 100px;
    margin: auto auto auto 10px;
    float: left;
}


header h1 {
     font-weight: bold;
     color: #FFFFFF;
     margin: auto;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     font-size: 1.9em;
}

.version {
    font-weight: bold;
    color: #FFFFFF;
    margin: auto;
    font-size: 1.4em;
    position: absolute;
    float: right;
    top: 50%;
    transform: translate(-50%, -50%);
    right: 5px;
    z-index: 10;
}

/* FOOTER SECTION */

footer {
    clear: both;
    width: 100%;
    height: 80px;
    background: #003232;
    color: #FFFFFF;
    padding: 2px 2px;
    position: relative;
}

.footergroup {
    margin: auto auto auto 16px;
}


footer span {
    font-size: 1.0em;
}


.poweredby {
    position: absolute;
    top: 20px;
    right: 16px;
    float: right;

}

/* MEDIA MOBILE SECTION */

@media screen and (max-width:450px){

#loginpanel {
    width: 80%;;
    margin: 50px auto auto auto;
    display: inline-block;

}

header h1 {
     font-weight: bold;
     color: #FFFFFF;
     margin: auto auto auto 20px;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     font-size: 1.6em;
}

.version {
    font-weight: bold;
    color: #FFFFFF;
    margin: auto;
    font-size: 1.2em;
    position: absolute;
    float: right;
    top: 50%;
    transform: translate(-50%, -50%);
    right: 2px;
    z-index: 10;
}


.footergroup {
    margin: auto auto auto 5px;
}


footer span {
    font-size: 0.7em;
}


.poweredby {
    position: absolute;
    top: 5px;
    right: 5px;
    float: right;

}

}