.ai-chat-login-form{
    max-width: 440px;
    width: 100%;
}
.ai-chat-login-wrapper{
    display: flex;
    min-height: 620px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.06);
    border-radius: 24px;
}
.ai-chat-login-form-wrapper, .ai-chat-login-notice-wrapper{
    flex: 1;
    padding: 48px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.ai-chat-login-form-wrapper .form-row input[type=email]:not(.submit),
.ai-chat-login-form-wrapper .form-row input[type=number]:not(.submit),
.ai-chat-login-form-wrapper .form-row input[type=password]:not(.submit),
.ai-chat-login-form-wrapper .form-row input[type=text]:not(.submit){
    transition: 0.3s all ease-in-out;
}
.ai-chat-login-form-wrapper .form-row input[type=email]:not(.submit):focus,
.ai-chat-login-form-wrapper .form-row input[type=number]:not(.submit):focus,
.ai-chat-login-form-wrapper .form-row input[type=password]:not(.submit):focus,
.ai-chat-login-form-wrapper .form-row input[type=text]:not(.submit):focus{
    border-color: #219653;
}
.ai-chat-login-form-wrapper .form-row input[type=email]:not(.submit):hover,
.ai-chat-login-form-wrapper .form-row input[type=number]:not(.submit):hover,
.ai-chat-login-form-wrapper .form-row input[type=password]:not(.submit):hover,
.ai-chat-login-form-wrapper .form-row input[type=text]:not(.submit):hover{
    border-color: #bdbdbd;
}
#privacy_policy_reg_field a, .lost_password a{
    color: #2f80ed;
}
#privacy_policy_reg_field a:hover, .lost_password a:hover{
    color: #2163ba;
}
.ai-chat-login-notice-wrapper{
    border-radius: 0 24px 24px 0;
    background-color: #f6f6f6;
    color: var(--dark-color, #1e1e1e);
}
.ai-chat-login-form-wrapper{
    border-radius: 24px 0 0 24px;
    background-color: #fff;
    align-items: center;
}
.woocommerce-error{
    width: 100%;
    border-radius: 8px;
}
.info-badge {
    display: inline-flex;
    align-items: center;
    background: #dcfce7;
    border-radius: 100px;
    padding: 5px 12px;
    margin-bottom: 16px;
    gap: 6px;
    width: fit-content;
    color: #166534;
}
.woocommerce-account .entry-content .woocommerce{
    display: block;
}
.info-badge span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
}
.info-heading {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: #1E1E1E;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
#password_strength{
    margin-top: 4px;
}
.woocommerce-password-hint{
    padding-left: 0;
}
.info-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}
.ai-features{
    margin-top: 24px;
}
.account-features{
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    margin-top: 24px;
}
.info-features__label{
    font-size: 12px;
    font-weight: 600;
    color: #4f4f4f;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.info-feat {
    display: flex;
    align-items: center;
    gap: 12px;
}
.feat-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-bg-color, #219653);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feat-check svg {
    width: 11px;
    height: 11px;
    stroke: var(--primary-text-color, #fff);
    fill: none;
    stroke-width: 3;
}
.page:not(.elementor-page) article.page{
    padding: 0 !important;
}
body .site{
    background-color: transparent !important;
}
.info-badge .pulse{
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    animation: bmw-pulse 2s ease-in-out infinite;
}
@keyframes bmw-pulse {
    0%, 100% {
        opacity: 0.95;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.85);
    }
}
.woocommerce-account label.woocommerce-form__label.woocommerce-form__label-for-checkbox span.required{
    padding-left: 0;
    color: #eb5757;
}
.woocommerce-account #privacy_policy_reg_field label.woocommerce-form__label.woocommerce-form__label-for-checkbox{
    display: inline-block;
}
.woocommerce-account label.woocommerce-form__label.woocommerce-form__label-for-checkbox span{
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
.ai-chat-login-notice{
    font-size: 14px;
}
.page-title{
    display: none;
}
@media screen and (max-width: 768px) {
    .ai-chat-login-wrapper{
        flex-direction: column-reverse;
    }
    .info-heading{
        font-size: 24px;
    }
    .ai-chat-login-notice-wrapper{
        border-radius: 24px 24px 0 0;
        background-color: #f6f6f6;
        color: var(--dark-color, #1e1e1e);
    }
    .ai-chat-login-form-wrapper{
        border-radius: 0 0 24px 24px;
        background-color: #fff;
        align-items: center;
    }
    .ai-chat-login-form-wrapper, .ai-chat-login-notice-wrapper{
        padding: 24px;
    }
    .ai-chat-login-form{
        max-width: unset;
        width: 100%;
    }
}