/* ============================================================
   WIZARD CARDS — registration type, info panels, boxes
============================================================ */

/* Registration Type Grid */
.regtype-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Card Style */
.regtype-card {
    background: white;
    border: 1px solid #dce3f9;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: all .25s ease;
}

.regtype-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    border-color: var(--tma-blue);
}

.regtype-card.selected {
    border-color: var(--tma-blue);
    background: #eef3ff;
    box-shadow: 0 4px 18px rgba(48,92,222,0.25);
}

.regtype-card h3 {
    margin: 0 0 8px;
    color: var(--tma-blue);
}

.regtype-card.selected h3 {
    font-weight: 600;
}

.regtype-card p {
    margin: 0;
    color: #555;
}

.regtype-radio {
    position: absolute;
    top: 20px;
    right: 20px;
    transform: scale(1.3);
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, #1a4fa1, #3b6fe8);
    color: white;
    padding: 20px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.4;
}

.option-box {
    background: linear-gradient(135deg, #2a5fd8, #3e7af0);
    padding: 20px;
    border-radius: 12px;
    color: white;
}
