body, html {
    height: 100%;
    background: linear-gradient(rgba(358, 85, 52,0.4),rgba(221, 221, 221,1));
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.login-title {
    margin-bottom: 2em;
}

    .login-title h1 {
        font-size: 20px;
        margin-bottom: 5px;
        font-weight: 600;
        color: #555;
    }

    .login-title p {
        margin-top: 0;
    }

.profile-img {
    width: 96px;
    /*height: 96px;*/
    margin: 0 auto 10px;
    display: block;
    /*-moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;*/
}

.account-wall {
    margin-top: 20px;
    padding: 40px 20px;
    background-color: #f7f7f7;
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.actions {
    margin-top: 2em;
}

.form-signin {
    /*max-width: 330px;*/
    /*padding: 15px;*/
    margin: 0 auto;
}

.form-group {
    margin-bottom: 8px;
}

    .form-group label {
        margin-bottom: 2px;
    }

.ricordami {
    margin-left: 20px;
}

.aiuto {
    margin-top: 10px;
}

/* -------------------- */
/* --- CSS per mobile---*/
/* -------------------- */
@media screen and (max-width:767px) {
    .container {
        padding:0;
        height:unset;
    }
    .container .login-page>.row{
        margin:0;

    } 

    .container .login-page>.row>.col-md-6{
        padding: 0;
    }
    .account-wall {
        margin-top:0;
        width:100vw;
        height:100vh;
    }
    .form-control {
        font-size:16px;
    }

    .actions {
        display:flex;
        flex-direction:column;
        margin-top:1em;
    }
    .actions .col-xs-6 {
        width:100%;
    }

    .actions .col-xs-6:first-child {
        order:2;
        margin-top:5px;
    }
    .ricordami,
    .aiuto {
        width:100%;
    }

    .aiuto {
        font-size:16px;
        margin-top:5px;
    }

    /*NB: Se si riesce ad applicare la classe "appView", le regole sottostanti  valgono solo per la pagina vista dall'app */
/*     
    .appView .ricordami,
    .appView .actions .col-xs-6:first-child {
        display:none;
    }
     .appView .actions .col-xs-6:nth-child(2) {
         width:100%;
     } */
}