
    .login_form_wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
       
        padding: 20px 0;
    }

    .editorial-calendar-form {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        width: 100%;
    }

    /* Remove Bootstrap default gutters */
    .editorial-calendar-form .no-gutters {
        margin-right: 0;
        margin-left: 0;
    }

    .editorial-calendar-form .no-gutters > .col,
    .editorial-calendar-form .no-gutters > [class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }

    /* LEFT SECTION */
    .left-section {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url('https://industry.pharmafocusamerica.com/images/login-left-image.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 500px;
        height: 100%;
    }

    .left-text {
        text-align: center;
        color: white;
    }

    .left-text h2 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 12px;
        font-family: Arial, sans-serif;
        
				text-align: left;
    }

    .left-text p {
        font-size: 16px;
        line-height: 1.6;
        opacity: 0.95;
				text-align: justify;
    }

    .benefits-section {
        margin-top: 25px;
        text-align: left;
    }

    .benefits-section h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 12px;
        color: white;
    }

    .benefits-list {
        list-style: none;
        padding: 0;
    }

    .benefits-list li {
        font-size: 16px;
        line-height: 1.8;
        color: white;
        opacity: 0.9;
        margin-bottom: 8px;
        padding-left: 22px;
        position: relative;
    }

    .benefits-list li:before {
        content: "✓";
        position: absolute;
        left: 0;
        font-weight: bold;
        color: white;
    }

    /* RIGHT SECTION */
    .right-section {
        padding: 40px 35px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .register-title {
        text-align: center;
        color: #333;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 20px;
        font-family: 'Poppins', sans-serif;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group label {
        display: block;
        font-size: 11px;
        color: #999;
        margin-bottom: 6px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }

    /* Override Bootstrap form-control */
    .right-section .form-control {
        padding: 10px 14px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
        font-family: 'Poppins', sans-serif;
        background: #f9f9f9;
        color: #333;
        height: auto;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    .right-section .form-control:focus {
        border-color: #a8d5c4;
        background: white;
        box-shadow: 0 0 0 2px rgba(168, 213, 196, 0.2);
    }

    .sign-in-btn {
        width: 100%;
        padding: 13px;
        background: #555;
        color: white;
        border: none;
        border-radius: 24px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Poppins', sans-serif;
        letter-spacing: 1px;
        margin-top: 10px;
    }

    .sign-in-btn:hover {
        background: #444;
        transform: translateY(-1px);
    }

    .signin-link {
        text-align: center;
        margin-top: 15px;
        font-size: 12px;
        color: #999;
    }

    .signin-link a {
        color: #a8d5c4;
        text-decoration: none;
        font-weight: 600;
    }

    .signin-link a:hover {
        color: #8bc5b3;
    }

    .help-block {
        color: #dc3545;
        font-size: 12px;
        margin-top: 4px;
        display: block;
    }

    .cf-turnstile {
        margin: 15px 0;
    }

    .success-message {
        color: green;
        text-align: center;
        padding: 15px;
        margin-bottom: 20px;
        background-color: #d4edda;
        border: 1px solid #c3e6cb;
        border-radius: 8px;
        font-family: 'Poppins', sans-serif;
    }

    .success-message h2 {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
    }

    /* RESPONSIVE */
    @media (max-width: 767px) {
        .login_form_wrapper {
            padding: 15px;
            align-items: flex-start;
        }

        .left-section {
            min-height: 280px;
            padding: 30px 20px;
        }

        .left-text {
            padding-top: 0;
        }

        .right-section {
            padding: 30px 20px;
        }

        .register-title {
            font-size: 18px;
        }
    }

    @media (max-width: 480px) {
        .left-section {
            min-height: 220px;
            padding: 25px 15px;
        }

        .left-text h2 {
            font-size: 17px;
        }

        .right-section {
            padding: 25px 15px;
        }
    }