.jwa-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.jwa-progress-bar {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 30px;
    overflow: hidden;
}

.jwa-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2c5aa0, #4a90e2);
    transition: width 0.3s ease;
}

.jwa-form h2 {
    color: #2c5aa0;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
}

.jwa-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.jwa-form-group {
    margin-bottom: 20px;
}

.jwa-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.jwa-form-group input,
.jwa-form-group select,
.jwa-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.jwa-form-group input:focus,
.jwa-form-group select:focus,
.jwa-form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.jwa-form-group input.error,
.jwa-form-group select.error,
.jwa-form-group textarea.error {
    border-color: #dc3545;
}

.jwa-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.jwa-checkbox-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jwa-checkbox-item:hover {
    border-color: #2c5aa0;
    background: #f8f9ff;
}

.jwa-checkbox-item input[type="checkbox"] {
    width: auto !important;
    margin-right: 10px;
    margin-bottom: 0;
}

.jwa-checkbox-item.checked {
    border-color: #2c5aa0;
    background: #f8f9ff;
}

.jwa-privacy-group {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 30px;
}

.jwa-privacy-group.error {
    border-color: #dc3545;
    background: #fff5f5;
}

.jwa-privacy-checkbox {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.jwa-privacy-checkbox span {
    font-size: 14px;
    line-height: 1.4;
}

.jwa-recaptcha-container {
    margin: 20px 0;
    text-align: center;
}

.jwa-form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.jwa-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.jwa-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.jwa-btn-primary {
    background: #2c5aa0;
    color: white;
}

.jwa-btn-primary:hover:not(:disabled) {
    background: #234a87;
}

.jwa-btn-secondary {
    background: #6c757d;
    color: white;
}

.jwa-btn-secondary:hover:not(:disabled) {
    background: #5a6268;
}

.jwa-btn-success {
    background: #28a745;
    color: white;
}

.jwa-btn-success:hover:not(:disabled) {
    background: #218838;
}

.jwa-success-message {
    text-align: center;
    padding: 40px 20px;
}

.jwa-success-message h2 {
    color: #28a745;
    margin-bottom: 15px;
}

.jwa-form-step.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Company cell styling */
.jwa-company-cell {
    line-height: 1.4;
}

.company-name {
    font-weight: 600;
    color: #2c5aa0;
}

.jwa-company-details {
    font-size: 12px;
    color: #666;
    margin-top: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .jwa-form-container {
        padding: 15px;
        margin: 10px;
    }
    
    .jwa-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .jwa-checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .jwa-form-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .jwa-btn {
        width: 100%;
        text-align: center;
    }
}