html{
    width: 100%;
    height: 100%;
    overflow: auto;
}

body{
    /*background: url("../images/fondo.jpg") no-repeat center center fixed;*/
    background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
    font-family: 'Avenir';
    background-color: #fcfcfc;
}
.logoLogin {
    width: 20%;
    min-width: 250px;
}

.schafflerGreenTxt{
    color: #0b934b;
    font-weight: bold;
}
.schafflerGreenBtn{
    background: #02893d;
    color: #fff;
}
.schafflerGreenBtn:hover {
    background-color: #fff;
    color: #013f16;
}

#izquierda{
    height: 100%;
    text-align: center;
    padding: 0 !important;
    /*padding-top: 4em;*/
}

#izquierda img{
    /*max-width: 80%;*/
    width: 100%;
}

#derecha{
    height: 100%;
    /*background: rgba(0, 0, 0, 0.51);*/
    background-image: url("../images/fondologin.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    z-index: 3;
    display: grid;
    grid-template-rows: minmax(80px,10%) minmax(auto,80%) minmax(80px,10%);
    padding:0;
}

#derecha form{
    color: white;
    width: 60%;
    display: block;
}

.login-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #02893d05;
}
#derecha form#entrar{
    margin: auto;
    max-width: 550px;
    padding: 2rem 4rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 10px -4px #00000085;
    border-radius: 5px;
    /* border: 1px solid #013f16; */
    width: 100vw;
    z-index: 10;
}

#derecha.registro form#entrar{
    display :none;
}

#derecha form#registro{
    margin: 15% auto 0;
}

#derecha.entrar form#registro{
    display: none;
}

#derecha form h2{
    text-transform: uppercase;
    font-weight: bold;
}

#derecha form h3{
    margin-top:2.5em
}

#derecha form .form-group{
    margin: 2rem 0;
}

#derecha form label{
    font-size: 1.2em;
}

#derecha form input{
    text-align: center;
    /*padding: 6%;*/
    border: none;
}

#derecha form input.btn{
    font-size: 1.2em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    margin: 2em auto;
    -webkit-box-shadow: 4px 4px #e0e0e0;
    box-shadow: 4px 4px #e0e0e0;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 10;
    position: relative;
}
p.tituloBotonLogin {
    font-size: 5vh;
}
/*.input-group {
    background: #02893d;
    color: #fff;
    !*border-color: #013f16;*!
    box-shadow: 2px 4px #c3e5c4;
}*/
.input-group>span {
    background: #02893d;
    color: #fff;
    /*border-color: #013f16;*/
    box-shadow: 2px 4px #c3e5c4;
}
.input-group>input {
    box-shadow: 2px 4px #e0e0e0;
}

#derecha form p a{
    font-weight: bold;
    font-size: 1.5em;
    color: #02b9ff;
}
.tituloLogin {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #013f16;
    background: #fff;
}

.loginFooter {
/*    background-color: rgb(2, 137, 61);
    height: 39%;
    width: 100%;
    position: fixed;
    bottom: 0%;
    z-index: 2;*/
}

footer {
    width: 100%;
    background-color: #013f16;
    color: white;
    padding: 1rem 2em;
    display: flex;
    align-items: center;
    font-size: 1.2em;
}
/*tablet vertical o m�vil horizontal*/
@media only screen and (max-width: 760px) {

    #login #izquierda {
        width: 33% !important;
    }
    /*#login #izquierda img{*/
        /*max-width: 100%;*/
    /*}*/

    #login #derecha form h2{
        font-size: 20px;
    }
    #login #derecha form h3{
        display: none;
    }
    #login #derecha form input.btn{
        margin: 10px 0;
    }
    #login #derecha form p a{
        margin-top: -5px;
        display: inline-block;
    }

    footer{
        height: auto;
        padding: 1em;
    }
}

/*tablet vertical o m�vil vertical*/
@media only screen and (max-width: 478px) {

    #login #izquierda{
        width: 100% !important;
        height: 30% !important;
        padding-top: 10px;
    }
/*    #login #derecha{
        width: 100% !important;
        height: 70% !important;
        margin-top: 12%;
    }*/
    /*#login #izquierda img{*/
        /*max-width: 145px;*/
    /*}*/
    #derecha form#entrar {
         background: transparent;
         box-shadow: none;
    }
    form#entrar:before {
        content: "";
        background: rgba(255, 255, 255, 0.9);
        position: absolute;
        top: 80px;
        bottom: 80px;
        width: 100%;
        left: 0;
    }
}