/* Center the entire login block on the screen */
body {
    height: 100vh;
    margin: 0;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Override Bootstrap grid + float */
#LoginUser {
    width: 100% !important;
    max-width: 350px;
    margin: 0 auto !important;
    float: none !important;
    display: flex !important;
    justify-content: center !important;
}

#logInForm {
    width: 100% !important;
    float: none !important;
    text-align: center;
}

/* Optional spacing */
#logInForm input {
    margin-bottom: 12px;
    width: 100% !important;
}

#LoginLink {
    display: block;
    margin-top: 10px;
    text-align: center;
}