/* Membership Form Styles */
.membership-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.membership-form h1 {
    text-align: center;
    color: #8b5a2b;
    font-size: 32px;
}

.membership-form p {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Left-aligned checkbox and text */
.checkbox-group {
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: flex-start;
    margin-bottom: 10px;

}

.checkbox-group input {
    margin-right: 10px;
    transform: scale(1.2);
}

.checkbox-group label {
    font-size: 14px;
    color: #333;
}

.checkbox-group a {
    color: #8b5a2b;
    text-decoration: underline;
}

/* Disclaimer Text */
.disclaimer {
    font-size: 14px;
    color: #666;
    text-align: left;
    margin-top: 20px;
    line-height: 1.5;
}

/* Submit Button */
.submit-btn {
    display: block;
    width: 100%;
    background-color: #8b5a2b;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 15px;
}

.submit-btn:hover {
    background-color: #6a4320;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.popup-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}
