
.bp-forms-auth {
    display: flex;
    gap: 20px;
    flex-direction: column;
    max-width: 100%;
    padding: 50px 0px 0px;
}
.bp-header {
    background: var(--bg-logo);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 18px;
}
.bp-content {
    min-height: calc(100vh - 70px);
    background: var(--bg-body);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0px 15px 50px;
}
.bp-form-block {
    background: #FFFFFF;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    max-width: 100%;
    width: 480px;
    padding: 20px 30px ;
    margin: 0px auto;
}

.bp-title {
    font-weight: 400;
    font-size: var(--font-size-form-title);
    margin-bottom: 30px;
}
@media screen and (min-width: 768px){

    .bp-forms-auth {
        flex-direction: row-reverse;
    }
}

