/* Member Form Styles */
.dparty-member-form-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    font-family: inherit;
}

.dparty-member-form-title {
    margin-bottom: 20px;
    text-align: center;
}

.dparty-member-form .form-group {
    margin-bottom: 20px;
}

.dparty-member-form .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.dparty-member-form .form-control:focus {
    border-color: #d6aa55;
    outline: none;
    box-shadow: 0 0 5px rgba(214, 170, 85, 0.3);
}

.dparty-member-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.dparty-member-form .btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #fff;
    cursor: pointer;
}

.dparty-member-form .btn:hover {
    opacity: 0.9;
}

.dparty-form-messages {
    margin-bottom: 20px;
    padding: 10px 15px;
    border-radius: 5px;
    display: none;
}

.dparty-form-messages.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.dparty-form-messages.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive styles */
@media (max-width: 768px) {
    .dparty-contact-form .form-group {
        flex-direction: column;
    }
    
    .dparty-contact-form .form-group input,
    .dparty-contact-form .form-group textarea {
        width: 100%;
        margin-bottom: 10px;
    }
}
