.lf-login-wrap {
        position: relative;
        background: url('/images/signup_bg_image.png') no-repeat center center;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px 24px;
        min-height: calc(100vh - 120px);
        font-family: 'Outfit', sans-serif;
    }

    .lf-login-wrap::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(140, 0, 26, 0.94) 0%, rgba(20, 10, 15, 0.92) 100%);
        z-index: 1;
    }

    .lf-register-card {
        background: rgba(226, 226, 228, 0.96);
        border-radius: 28px;
        padding: 26px 32px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.25);
        width: 100%;
        max-width: 500px;
        box-sizing: border-box;
        backdrop-filter: blur(10px);
    }

    .lf-register-card .lf-field {
        margin-bottom: 12px;
    }

    .lf-register-card .lf-field label {
        display: block;
        font-size: .82rem;
        font-weight: 600;
        color: #4a4a4a;
        margin-bottom: 4px;
        text-align: left;
    }

    .lf-register-card .lf-input-wrap {
        position: relative;
    }

    .lf-register-card .lf-input-wrap input {
        width: 100%;
        border: none !important;
        border-radius: 12px !important;
        padding: 9px 42px 9px 14px;
        font-size: .92rem;
        color: #333;
        background: #ecebeb !important;
        outline: none;
        transition: all .2s ease-in-out;
        box-sizing: border-box;
        height: 40px;
    }

    .lf-register-card .lf-input-wrap input::placeholder {
        color: #999;
    }

    .lf-register-card .lf-input-wrap input:focus {
        background: #e2e2e2 !important;
        box-shadow: 0 0 0 3px rgba(140, 0, 26, 0.15) !important;
    }

    .lf-register-card .lf-input-wrap .lf-eye {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #666;
        cursor: pointer;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.2s;
    }

    .lf-register-card .lf-input-wrap .lf-eye:hover {
        color: #333;
    }

    .lf-register-card .lf-btn-login {
        width: 100%;
        height: 42px;
        background: #8C001A;
        color: #fff;
        border: none;
        border-radius: 12px;
        font-size: 0.95rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        box-shadow: 0 4px 12px rgba(140, 0, 26, .2);
    }

    .lf-register-card .lf-btn-login:hover {
        background: #730014;
        box-shadow: 0 6px 16px rgba(140, 0, 26, .3);
        transform: translateY(-1px);
    }

    .lf-register-card .lf-btn-login:active {
        transform: translateY(1px);
    }

    .lf-divider {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 12px 0;
        color: #777;
        font-size: .82rem;
        font-weight: 500;
    }

    .lf-divider span {
        flex: 1;
        height: 1px;
        background: #c5c5c5;
    }

    .lf-btn-google,
    .lf-btn-facebook {
        flex: 1;
        height: 40px;
        background: #fff;
        color: #4a4a4a;
        border: 1.5px solid #dcdcdc;
        border-radius: 12px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all .2s ease-in-out;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0;
        box-shadow: none;
        box-sizing: border-box;
    }

    .lf-btn-google:hover,
    .lf-btn-facebook:hover {
        background: #f5f5f5;
        border-color: #ccc;
        color: #333;
        text-decoration: none;
    }

    .lf-btn-google img {
        width: 16px;
        height: 16px;
    }

    .lf-signup-note {
        text-align: center;
        margin-top: 12px;
        font-size: .88rem;
        color: #666;
    }

    .lf-signup-note a {
        color: #8C001A;
        font-weight: 700;
        text-decoration: none;
        transition: color 0.2s;
    }

    .lf-signup-note a:hover {
        color: #730014;
        text-decoration: underline;
    }

    .lf-terms {
        text-align: center;
        margin-top: 12px;
        font-size: .75rem;
        color: #888;
        line-height: 1.5;
    }

    .lf-terms a {
        color: #666;
        text-decoration: underline;
        transition: color 0.2s;
    }

    .lf-terms a:hover {
        color: #333;
    }

    .lf-alert {
        border-radius: 10px;
        font-size: .86rem;
        padding: 10px 14px;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .lf-alert-danger {
        background: #fff2f3;
        color: #c0392b;
        border: 1px solid #fad0d0;
    }

    .lf-alert-success {
        background: #f0fff4;
        color: #1a7f37;
        border: 1px solid #c3e6cb;
    }

    .lf-row-between {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        font-size: .82rem;
    }

    .lf-remember {
        display: flex;
        align-items: center;
        gap: 7px;
        color: #555;
        cursor: pointer;
        font-weight: 600;
    }

    .lf-remember input[type=checkbox] {
        accent-color: #8C001A;
        width: 15px;
        height: 15px;
        cursor: pointer;
    }

    .lf-forgot {
        color: #8C001A;
        text-decoration: none;
        font-weight: 700;
    }

    .lf-forgot:hover {
        text-decoration: underline;
    }

    .lf-left-brand-text {
        text-align: left;
        margin-top: -20px;
    }

    .lf-left-brand-text h1 {
        font-size: 3.8rem !important;
        line-height: 1.15;
    }

    .lf-left-brand-text p {
        font-size: 1.1rem !important;
        opacity: 0.9;
        line-height: 1.6;
    }

    .lf-recaptcha-wrapper {
        margin: 12px 0;
        display: flex;
        justify-content: center;
    }

    .lf-recaptcha-box {
        width: 302px;
        height: 76px;
        border: 1px solid #d3d3d3;
        background: #f9f9f9;
        border-radius: 4px;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 12px;
        box-sizing: border-box;
        font-family: Roboto, helvetica, arial, sans-serif;
        transition: border-color 0.2s;
    }

    .lf-recaptcha-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .lf-recaptcha-checkbox-wrapper {
        width: 26px;
        height: 26px;
        position: relative;
    }

    .lf-recaptcha-checkbox {
        width: 26px;
        height: 26px;
        border: 2px solid #aaa;
        background: #fff;
        border-radius: 4px;
        cursor: pointer;
        position: relative;
        transition: border-color 0.2s, background-color 0.2s;
        box-sizing: border-box;
    }

    .lf-recaptcha-checkbox:hover {
        border-color: #888;
    }

    .lf-recaptcha-checkmark {
        position: absolute;
        top: 1px;
        left: 1px;
        width: 20px;
        height: 20px;
        fill: #009d57;
        display: none;
    }

    .lf-recaptcha-spinner {
        width: 16px;
        height: 16px;
        border: 2px solid #4a90e2;
        border-top-color: transparent;
        border-radius: 50%;
        position: absolute;
        top: 3px;
        left: 3px;
        animation: spin 1s linear infinite;
        display: none;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .lf-recaptcha-checkbox.loading {
        border-color: transparent;
        background: transparent;
    }

    .lf-recaptcha-checkbox.loading .lf-recaptcha-spinner {
        display: block;
    }

    .lf-recaptcha-checkbox.checked {
        border-color: transparent;
        background: transparent;
    }

    .lf-recaptcha-checkbox.checked .lf-recaptcha-checkmark {
        display: block;
    }

    .lf-recaptcha-text {
        font-size: 13px;
        color: #4a4a4a;
        font-weight: 500;
        user-select: none;
        cursor: default;
    }

    .lf-recaptcha-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        width: 60px;
    }

    .lf-recaptcha-right img {
        width: 26px;
        height: 26px;
        object-fit: contain;
    }

    .lf-recaptcha-brand-text {
        font-size: 7px;
        color: #555;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    @media (max-width: 991px) {
        .lf-left-brand-text {
            margin-top: 0;
            text-align: center;
        }
    }
