/* 
    Created on : 7-set-2016, 22.56.15
    Author     : ale
*/

body::after {
        position: absolute;
        top: 0px;
        right: 0px;
        font-size: 20px;
        padding: 15px 20px 10px 20px;
        content: "DESKTOP";
        background-color: yellow;
        height: 30px;
        background-color:#2098d9;
        color: white;
    }

 header, form {
        text-align: center;
        width: 100%;    
}

#logo {
    margin-top: 100px;
}
 
/* cellulari e schermo verticale */

@media  (orientation:portrait)  {
    
    body::after { content: "PHONE" !important; }
    
    /* immagine 332x92 */
    #logo {
        position: relative;
        margin-top: 50px;
        height: 200px;
    }
    
    
    * {
        font-size: 60px;
    }
    
    
    
    input[type=text],  input[type=password], input[type=button] { 
        width: 600px;
        
    }
    

    label {
        display: block;
    }
}

