            .companies_form_wrapper {
                max-width: 600px;
                margin: 2rem auto;
                padding: 1.5rem;
                background: #fff;
                border: 1px solid #e5e7eb;
                border-radius: .75rem;
                box-shadow: 0 2px 8px rgba(0,0,0,.05);
                font-family: system-ui, sans-serif;
            }
            .companies_form_title {
                margin-bottom: .5rem;
                font-size: 1.25rem;
                font-weight: 600;
                color: #111827;
            }
            .companies_form_description {
                margin-bottom: 1rem;
                color: #6b7280;
            }
            .companies_form_message {
                margin-bottom: 1rem;
                padding: .75rem 1rem;
                border-radius: .5rem;
                background: #fcfdf0ff;
                color: #000000ff;
                border: 1px solid #f3f7bbff;
            }
            .companies_form_group {
                margin-bottom: 1rem;
            }
            .companies_form_group label {
                display: block;
                margin-bottom: .25rem;
                font-weight: 500;
                color: #374151;
            }
            .companies_form_group input {
                width: 100%;
                padding: .5rem .75rem;
                border: 1px solid #d1d5db;
                border-radius: .5rem;
                font-size: 1rem;
            }
            .companies_form_button {
                background: #2563eb;
                color: #fff;
                font-weight: 600;
                padding: .5rem 1rem;
                border-radius: .5rem;
                border: none;
                cursor: pointer;
                transition: background .2s ease;
            }
            .companies_form_button:hover {
                background: #1e40af;
            }