.bm__body-area {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.bm__body-area__inline {
    display: flex;
    flex-direction: row;
}

.bm__body-area__navbarholder {
    display: flex;
    flex: 1;
}

.bm__body-area__contentholder {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.bm__static-layout__page-body {
    display: flex;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 600px;
    flex-direction: column;
    background: var(--static-bg);
}

.bm__static-layout__content-box {
    display: flex;
    flex-direction: column;
    max-width: 640px;
    align-self: center;
    margin-top: auto;
    margin-bottom: auto;
    padding: 20px 40px;
    border: 3px solid var(--sign-in-group-bordercolor);
    border-radius: 20px;
    background: var(--sign-in-group-bg);
}

.bm__static-layout__content-box h1 {
    font-family: var(--font-family);
    text-align: center;
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    color: var(--static-header-textcolor);
    margin-bottom: 30px;
}

.bm__static-layout__content-box p {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 200;
    font-size: 20px;
    line-height: 25px;
    color: #FFFFFF;
    margin-top: 6px;
    margin-bottom: 6px;
}


.bm__static-layout__content-box h2 {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: #FFFFFF;
    margin-top: 6px;
    margin-bottom: 6px;
}

.bm__static-layout__content-box h3 {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 200;
    font-size: 16px;
    line-height: 16px;
    color: #bdbdbd;
    margin-top: 40px;
    margin-bottom: 6px;
}

.bm__static-layout__content-box a {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 200;
    font-size: 16px;
    line-height: 16px;
    color: #bdbdbd;
    margin-top: 40px;
    margin-bottom: 6px;
}

.bm__static-layout__content-box a {
    text-decoration: underline;
}

/**
 * Media: Mobile Phone
 */
 @media screen and (max-width: 550px) {

    .bm__static-layout__page-body {
        min-height: 400px;
    }

    .bm__static-layout__content-box {
        padding: 30px 15px;
        border: 0px;
        background: none;
        margin-top: 0px;
    }
    
    .bm__static-layout__content-box h1 {
        font-weight: 500;
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 25px;
        text-align: left;
    }
    
    .bm__static-layout__content-box p {
        font-size: 18px;
        line-height: 18px;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    
    .bm__static-layout__content-box a {
        font-size: 18px;
        line-height: 18px;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    

 }
