.membear-signup-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.membear-form-row {
    margin-bottom: 1.5rem;
}

.membear-form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.membear-form-row input,
.membear-form-row select,
.membear-form-row textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.membear-form-row input:focus,
.membear-form-row select:focus,
.membear-form-row textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.membear-form-row input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.membear-field-description {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #666;
}

.membear-submit-button {
    width: 100%;
    padding: 1rem;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.membear-submit-button:hover {
    background-color: #357abd;
}

.membear-submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.membear-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
}

.membear-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.membear-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .membear-signup-form {
        padding: 1rem;
    }

    .membear-form-row {
        margin-bottom: 1rem;
    }

    .membear-form-row input,
    .membear-form-row select,
    .membear-form-row textarea {
        padding: 0.5rem;
    }
} 