
/* Pantallas de ordenador */
body{
    background-color: #ff9205;
}
    #pantalla{
        background-color: #f5f5f5;
    }
    
    #izquierda{
        background-color: #ff9205;
        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: 20vh;
        color: #545859;
        font-size: 50px;
        font-weight: bold;
    }
    
    #decoracion{
        background-color: #ff9205;
        height: 10px;
    }

    #texto1,#texto2{
        color: #545454;
        text-align: center;
    }
    
    #texto1{
        color: #C0392B;
        font-weight: bold;
        font-size: 20px;
        margin-top: 5vh;
    }

    #login, #password{
        border-radius: 0px;
        margin-top: 5vh;
        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: 5vh;
        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;
    }


/* Pantallas de movil */
@media screen and (max-width:768px){
    
    #izquierda{
        height: 30vh;
        width: 100%;
    }

    #pantalla{
        background-color: #FF9205;
        height: 100vh;
    }

    img{
        width: 20vh;
    }

    #fondo{
        background-color: #FF9205;
    }

    .margin1{
        margin-top: 10vh;
    }

    #derecha{
        width: 100%;
        height: 70vh;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        background-color: #fff;

    }

    #titulo{
        font-size: 4vh;
        margin-top: 10vh;
    }

    #login, #password{
        height: 4vh;
        font-size: 2.5vh;
        background-color: #fff;
        padding-left: 3.5vh;
    }

    .iconoInput {
        font-size: 2.5vh;
    }

    #entrar{
        font-size: 2.5vh;
    }
    
    #enlace a{
        font-size: 2vh;
    }
}
