@media (min-width: 992px) {
    #LoginMember, #RegisterMember {
        padding: 3rem 4rem;
        /*border-left: 1px solid #ccc;*/
    }
}
.log-title {
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.log-title h1 {
    font-size: 26px;
    font-weight: 700;
    position: relative;
}

.log-title h1:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background: #000;
    left: 0;
    bottom: -10px;
}

.form_login input {
    width: 100%;
    background: #f1f1f1;
    border: none;
    border-radius: 0;
    padding: 10px;
}

.form_login .sign-btn {
    background: #000;
    color: #fff;
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
    display: block;
    text-align: center;
    border-radius: 25px;
}

.no-account-row {
    position: relative;
}

.no-account {
    z-index: 1;
    width: fit-content !important;
    margin: 0 auto;
    display: block;
    padding: 0 10px;
    background: #fff;
}

.no-account-row:after {
    position: absolute;
    content: "";
    width: calc(100% - calc(var(--bs-gutter-x)));
    height: 0.01rem;
    background: #ccc;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 0;
}