
/* Diseño para moviles */

#pantalla{
    background-color: #f5f5f5;
}

#izquierda{
    background-color: #545859;
    min-height: 100vh;
}

#fondo{
    background-color: #fff;
    height: 55px;
    width: 50px;
    border-radius: 5px;
    z-index: 1;
    position:absolute;
}

img{
    z-index: 2;
    -webkit-transition: initial;
    -moz-transition: initial;
    transition: initial;
}

.margin1{
    margin-top: 35vh;
}

.margin2{
    margin-top: -8vh;
}


#titulo{
    text-align: center;
    margin-top: 30vh;
    color: #545859;
    font-size: 50px;
    font-weight: bold;
}

#decoracion{
    background-color: #ff9205;
    height: 10px;
}

#login, #password{
    border-radius: 0px;
    margin-top: 50px;
    border: 0;
    border-bottom: 2px solid #545859;
    font-weight: bold;
    background-color: #f5f5f5;
    padding-left: 40px;
}

#login:focus, #password:focus{
    box-shadow: none;
    border-color: #FF9205;
}

.iconoInput {
    color: #545859;
    font-size: 25px;
    position: absolute;
}

#entrar{
    margin-top: 50px;
    margin-bottom: 20px;
    width: 100%;
    border: 3px solid #545859;
    color: #545859;
}

#enlace a:link, #enlace a:visited{
    color: #545859;
    text-decoration: none;
}

#enlace a:hover {
    text-decoration: underline;
}

/* Diseño para tabletas */ 
@media screen and (min-width: 1050px) {
    #fondo{
        height: 55px;
        width: 50px;
    }

    #titulo{
        margin-top: 20vh;
    }
}

/* Diseño para PC */ 
@media screen and (min-width: 1400px) {
    #fondo{
        height: 55px;
        width: 50px;
    }
    
    #titulo{
        margin-top: 20vh;
    }
}