html, body {
    background-color: #F4F5FF !important;
}
.bg-white {
    background-color: #F4F5FF !important;
}

.bh-header, .bh-footer {
    display: none;
}


.bh-auth-logo {
    margin-top: 30px;
    margin-bottom: 50px;
    text-align: center;
    height: 45px;
    display: block;
}

.bh-auth-card {
    border: 1px solid #ebebeb;
    padding: 45px 45px 30px 45px;
    background-color: #fff;
    border-radius: 12px;
    max-width: 480px;
    margin: 0 auto 40px auto;
}

.bh-auth-card.register {
    max-width: 700px;
    padding: 45px;
}

.bh-auth-card .page-title {
    text-align: center;
    color: #5621b6;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.bh-auth-card label {
    font-size: 15px;
    color: #6c757d;
}

.bh-auth-card .forgot-pw {
    color: var(--purple);
    font-weight: 600;
    margin-top: 10px;
    font-size: 15px;
    display: block;
}

.bh-auth-card .btn-auth {
    height: 50px;
    font-weight: 500;
    font-size: 15px;
    width: 100%;
}

.bh-auth-card .btn, .bh-auth-card .form-control {
    border-radius: 6px;
}


.bh-auth-card .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}


.create-new-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid #e2e2e2;
    padding-top: 25px;
    color: var(--purple);
    font-weight: 600;
}


@media (max-width: 768px) {
    .bh-auth-card {
        padding: 24px !important;
    }
}


.tabs-type {
    border: 1px solid #e2e2e2;
    background-color: #fff;
    display: flex;
    padding: 8px;
    gap: 8px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tabs-type .link {
    flex: 1;
    border: 0;
    background-color: transparent;
    font-weight: 500;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    transition: 0.2s;
}

.tabs-type .link:hover, .tabs-type .link.active {
    background-color: var(--purple);
    color: #fff;
}