/* Gaya untuk layout dua kolom */
.layout-wrap.two-columns {
    display: flex;
    gap: 20px; /* Jarak antara kolom */
}

.layout-wrap.two-columns .register-section {
    flex: 1; /* Setiap kolom memiliki lebar yang sama */
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Gaya untuk judul kolom */
.layout-wrap.two-columns .bp-heading {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

/* Responsive: Ubah menjadi satu kolom pada layar kecil */
@media (max-width: 768px) {
    .layout-wrap.two-columns {
        flex-direction: column;
    }
}
/* Gaya untuk tombol "Submit Request" */
#signup-form .submit {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Hover effect untuk tombol */
#signup-form .submit:hover {
    background-color: #005177;
}

/* Gaya untuk tabel membership requests */
.membership-requests-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.membership-requests-table th,
.membership-requests-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

/* Gaya untuk tautan "Request Membership" */
.bp-login-widget-request-membership-link a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}

.bp-login-widget-request-membership-link a:hover {
    text-decoration: underline;
}