/* Mobile devices */
@media screen and (min-width:320px) and (max-width:480px) {
    .content{
        padding-bottom: 100px;
    }

    #auth-icon{
        font-size: 90px;
    }

    #auth-phrase{
        font-size: 26px;
    }

​}

/* Tablets */

@media screen and (min-width:481px) and (max-width:768px) {
    #auth-icon{
        font-size: 110px;
    }
​}


/* Small screens, laptops */
@media screen and (min-width:769px) and (max-width:1024px) {

    .content{
        padding-bottom: 10px;
    }

    #auth-icon{
        font-size: 130px;
    }

    #login-panel{
        width: 400px;
    }
​}


/* 1025px — 1200px: Desktops, large screens */
@media screen and (min-width:1025px) and (max-width:1200px) {

    .content{
        padding-bottom: 80px;
    }

    
​}

/* large screens */
@media screen and (min-width:1200px) and (max-width:1400px) {

    .content{
        padding-top: 20px;
        padding-bottom: 80px;
    }

    
​}