.ebenezer-form-placeholder-admin {
    padding: 24px;
    background: #f0f7ff;
    border: 2px dashed #007cba;
    border-radius: 8px;
    text-align: center;
}

.ebenezer-form-wrapper_66450cf1 {
    max-width: 700px;
    margin: 40px auto;
    padding: 35px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333333;
}

.ebenezer-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.ebenezer-logo {
    font-size: 40px;
    margin-bottom: 8px;
}

.ebenezer-form-header h2 {
    margin: 0 0 5px 0;
    font-size: 24px;
    color: #1a365d;
    font-weight: 700;
}

.ebenezer-form-header p {
    margin: 0;
    font-size: 15px;
    color: #718096;
}

/* Progress bar & Indicators */
.ebenezer-progress-container {
    position: relative;
    margin-bottom: 40px;
}

.ebenezer-progress-bar {
    position: absolute;
    top: 15px;
    left: 0;
    height: 4px;
    background: #3182ce;
    width: 0%;
    transition: width 0.4s ease;
    z-index: 1;
}

.ebenezer-progress-container::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    z-index: 0;
}

.ebenezer-steps-indicators {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #edf2f7;
    border: 2px solid #cbd5e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    color: #4a5568;
    position: relative;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: #3182ce;
    border-color: #3182ce;
    color: #ffffff;
}

.step-dot.completed {
    background: #48bb78;
    border-color: #48bb78;
    color: #ffffff;
}

.step-label {
    position: absolute;
    top: 38px;
    font-size: 11px;
    font-weight: normal;
    color: #718096;
    white-space: nowrap;
}

.step-dot.active .step-label {
    color: #2b6cb0;
    font-weight: 600;
}

/* Steps and Layout */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #2d3748;
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 8px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
}

.required {
    color: #e53e3e;
}

/* Error States */
.error-border {
    border-color: #e53e3e !important;
}

/* Radio and Checkbox Styling */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.radio-option, .checkbox-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.declaration-box {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    padding: 16px;
    border-radius: 8px;
    line-height: 1.5;
}

/* File Upload Grids */
.file-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.file-upload-card {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    padding: 16px;
    border-radius: 8px;
}

.file-upload-card label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #4a5568;
}

.drop-zone {
    border: 2px dashed #cbd5e0;
    border-radius: 6px;
    padding: 20px 10px;
    text-align: center;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.drop-zone:hover {
    border-color: #3182ce;
}

.drop-zone input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.drop-zone-text {
    font-size: 12px;
    color: #718096;
}

.drop-zone-text.has-file {
    color: #48bb78;
    font-weight: 600;
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-primary {
    background: #3182ce;
    color: #ffffff;
    margin-left: auto;
}

.btn-primary:hover {
    background: #2b6cb0;
}

.btn-secondary {
    background: #edf2f7;
    color: #4a5568;
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.btn-submit {
    background: #48bb78;
    color: #ffffff;
    margin-left: auto;
}

.btn-submit:hover {
    background: #38a169;
}

/* Status Messages */
.form-status-wrapper {
    margin-top: 20px;
}

.form-message {
    padding: 14px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.form-message.success {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    color: #22543d;
}

.form-message.error {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    color: #742a2a;
}

.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
    .form-grid, .file-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .ebenezer-form-wrapper_66450cf1 {
        padding: 20px;
        margin: 20px;
    }
    .step-label {
        display: none;
    }
}