/*
*   Change height based on original photo size
*   If you want the logo to take up the full width of the login box
*   set it to the result of the following equation (rounded up to nearest full number (60.01 => 61))
*
*   x = 375 / image width
*   height = image height * x
*
*   if the logo is shorter than 375px (in width) you might want to lower the height since it could effect the logo clarity
*   the logo will be centered so its okay to just set height to the original image height
*/
.logo-login::before {
    height: 50px;
    background-image: url("login_logo.png.xhtml?ln=primefaces-shakespearesass");
}
