.contentHeaderPostLogin{
    justify-content: left!important;
}
#contentHeader {
    background-color: #fff;
    padding: 0;
    display: table;
}

    #contentHeader #logo {
        margin-left: 0;
    }

#logoWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-left: 20px;
    grid-template-columns: auto 1fr;
}

    #logoWrapper img {
        margin-right: 10px;
    }

    #logoWrapper h1 {
        font-size: 3.75rem;
        font-weight: 800;
        margin: 0;
        display: inline-block;
    }

#externalNavigation {
    background: var(--accent);
    min-width: 1010px;
    position: relative;
    z-index: 30;
}

#contentHeader #logo {
    background: url(/Assets/Logos/Ascend_Logo_RGB_ARM_Header.png) no-repeat;
    float: left;
    height: 109px;
    margin-top: 15px;
    margin-left: 4px;
    width: 209px;
}

#signInForm,
#passwordResetForm,
#forceOtherOut {
    margin: 80px auto;
    width: 310px;
}

    #signInForm .txt,
    #signInForm .pass {
        border: 1px solid #555;
    }

#forceOtherOut {
    width: 400px;
}

#passwordResetForm {
    margin-top: 40px;
}
#contentBody, #contentBody .widthWrap {

    }
#signInForm {
    border-radius: 3px;
    padding: 20px 40px;
}

    #signInForm a,
    #forceOtherOut a,
    #passwordResetForm a {
        display: block;
        float: left;
        margin-top: 10px;
        padding: 5px 10px;
    }

    #signInForm .txt,
    #signInForm .pass {
        font-size: 1.4em;
        width: 290px;
    }

.linkButton {
    background: #333;
    border: 2px solid #888;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    text-decoration: none;
}

    .linkButton:hover {
        background: #444;
        border-color: #aaa;
        color: #fff;
    }

.beDesc {
    display: block;
}

#menuNav {
    margin-top: 1px;
    float: right;
}

    #menuNav li {
        float: left;
        display: inline;
    }

        #menuNav li a {
            line-height: 30px;
            padding-left: 10px;
            padding-right: 10px;
            text-decoration: none;
            color: white;
            outline: 0;
            font-size: calc(16rem/16);
        }

#extLogoWrapper {
    padding: 10px;
}

#homeLogoWrapper {
    min-height: 150px;
    float: left;
    font-weight: bold;
    text-align: center;
    margin: 15px;
    width: 30%;
    border: 3px solid #dddddd;
    position: static;
}


#BELogoDiv {
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#BELogoImg {
    display: flex;
    max-height: 100px;
    width: auto;
}

#LogoutDiv {
    display: flex;
    justify-content: center;
}

#LogoutBtn {
    font-size: calc(26rem/16);
}
.centerAlignExternalBody {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.centerAlignContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.carrierPageTitle {
    background-color: #f1f1f1;
    margin: 25px 2px 2px;
    border-bottom: 1px solid #efefef;
    color: black;
    font-size: 1.625rem; /* Equivalent to 26px when 1rem = 16px */
    font-weight: 600;
    padding: 0 20px;
    text-shadow: none;
}


.custom-Label {
    font-size: 1.2rem !important;
    text-align: center;
    margin-top: 10px;
}

.beContainer {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}
#beContainer .beCard {
    margin-bottom: 50px;
    font-size: calc(12rem/16);
    min-width: 350px;
    margin: 10px; /* Adjust as needed */
    border: 2px solid #e0d8d8; /* Optional: Add border to child divs */
    box-sizing: border-box; /* Include padding and border in the width calculation */
}

#beContainer .beCard h1 {
    font-size: calc(16rem/16);
    font-weight: bold;
    color: black;
    text-align: center;
    text-shadow: none;
    background: #f1f1f1;
}
/* Media query for two columns on smaller screens */
#beContainer .beCard {
    width: calc(33.33% - 20px);
    /* Add other styles as needed */
}

/* Media query for screen size */
@media (max-width: 795px) {
    #beContainer .beCard {
        width: calc(100% - 20px); /* 100% for two columns, adjust as needed */
    }
}

/* Media query for one column on even smaller screens */
@media (max-width: 1168px) and (min-width: 795px) {
    #beContainer .beCard {
        width: calc(50% - 20px); /* 50% for one column, adjust as needed */
    }
}

