.login_row{
    list-style: none;
    margin-bottom: 0px;
}
.login_list_wrap{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, max-content));
    justify-content: center;
    column-gap: 5%;
}
.login_row img{
    max-width:30px;
    width: auto;
    height: auto;
    display: inline;
    margin-right: .5rem;
}
.status_mobile_wrap{
    text-align: center;
    display: none;
}
.status_footer_wrap{
    text-align: right;
    background-color: #f5f5f5;
    padding: 1rem;
    padding-right: 2rem;
}
.status_footer_wrap a{
    color: rgb(0, 52, 120);
}
.login_header{
    text-align: center;
}
.emergency_link{
    color: red;
}
@media (max-width: 48em){
    .status_mobile_wrap{
        display: block;
    }
    .status_footer_wrap{
        display: none;
    }
}