/* WooCommerce Membership Registration Styles */

.membership-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.form-content-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 30px;
}

.left-text, .right-text {
    flex: 1;
    min-width: 300px;
}

.left-text p, .right-text p {
    margin-bottom: 15px;
}

.right-text ul {
    padding-left: 20px;
}

.right-text ul li {
    list-style: disc;
    margin-bottom: 10px;
}

.custom-register-check {
    margin-top: 20px;
}

.tgwcfb-checkbox-label {
    font-weight: normal;
}

.input-description {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #555;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .form-content-row {
        flex-direction: column;
    }
    
    .left-text, .right-text {
        width: 100%;
    }
}