/* ============================================================
   WIZARD CORE LAYOUT + FORMS
   (Cleaned version — all layout handled by wizard-theme.css)
============================================================ */

/* BASE RESET */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f7fb;
}

/* ============================================================
   STEP CARD
============================================================ */
.step-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   GRID LAYOUT HELPERS
============================================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full-width {
    grid-column: span 2;
}

/* ============================================================
   FORM ELEMENTS
============================================================ */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 6px;
    color: #333;
}

.form-group input,
.form-group select,
textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

textarea {
    width: 100%;
    resize: vertical;
}

/* ============================================================
   NAVIGATION BUTTONS
============================================================ */
.wizard-nav-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.wizard-next-btn,
.wizard-prev-btn {
    padding: 12px 22px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background .25s ease;
}

.wizard-next-btn {
    background: #305CDE;
    color: #fff;
}

.wizard-next-btn:hover {
    background: #1f4cb8;
}

.wizard-prev-btn {
    background: #d5d5d5;
}

.wizard-prev-btn:hover {
    background: #b9b9b9;
}

/* ============================================================
   SECTION HEADERS
============================================================ */
.sub-header {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #05367B;
    font-size: 20px;
    font-weight: bold;
}

/* ============================================================
   CONDITIONAL DISPLAY BLOCKS
============================================================ */
.conditional-block {
    margin-top: 20px;
    padding: 20px;
    background: #f5f8ff;
    border-radius: 10px;
    border: 1px solid #d6e1ff;
}

.hidden {
    display: none;
}

/* ============================================================
   CHECKBOX ROWS
============================================================ */
.checkbox-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
}

.checkbox-row input {
    margin-right: 10px;
    transform: scale(1.3);
}
