.wcf-form-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.wcf-error-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    margin: 0;
    border-radius: 30px;
    background-color: rgba(198, 40, 40, 0.95);
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        top: -50px;
        opacity: 0;
    }
    to {
        top: 20px;
        opacity: 1;
    }
}

.wcf-progress-bar {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.wcf-progress {
    height: 100%;
    background: #4CAF50;
    transition: width 0.3s ease;
}

/* Hint text styling for cleaner UI */
.hint-text {
    font-size: 11px;
    color: #666;
    font-style: italic;
    margin-top: 3px;
    display: block;
    line-height: 1.3;
}

/* Make checkboxes more visible */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
}

.wcf-section {
    margin-bottom: 2rem;
}

.wcf-section h3 {
    margin-bottom: 1.5rem;
    color: #333;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 0.5rem;
}

.wcf-field {
    margin-bottom: 1.5rem;
}

.wcf-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

.wcf-field input[type="text"],
.wcf-field input[type="email"],
.wcf-field input[type="tel"],
.wcf-field input[type="number"],
.wcf-field input[type="date"],
.wcf-field select,
.wcf-field textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.wcf-field input:focus,
.wcf-field select:focus,
.wcf-field textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.wcf-field textarea {
    min-height: 100px;
    resize: vertical;
}

.wcf-field .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wcf-field .checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    cursor: pointer;
}

.wcf-form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.wcf-prev-btn,
.wcf-next-btn,
.wcf-submit-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wcf-prev-btn {
    background-color: #f0f0f0;
    color: #333;
}

.wcf-next-btn,
.wcf-submit-btn {
    background-color: #4CAF50;
    color: white;
}

.wcf-prev-btn:hover {
    background-color: #e0e0e0;
}

.wcf-next-btn:hover,
.wcf-submit-btn:hover {
    background-color: #45a049;
}

.error {
    border-color: #ff0000 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wcf-form-container {
        margin: 1rem;
        padding: 1rem;
    }
    
    .wcf-field input[type="text"],
    .wcf-field input[type="email"],
    .wcf-field input[type="tel"],
    .wcf-field input[type="number"],
    .wcf-field input[type="date"],
    .wcf-field select,
    .wcf-field textarea {
        padding: 0.5rem;
    }
    
    .wcf-form-navigation {
        flex-direction: column;
    }
    
    .wcf-prev-btn,
    .wcf-next-btn,
    .wcf-submit-btn {
        width: 100%;
    }
}
