.signup-wizard-body {
    font-family: 'Yekan Bakh', Tahoma, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    min-height: 100vh;
    margin: 0;
}

.signup-wizard-shell {
    display: flex;
    min-height: 100vh;
}

.signup-wizard-aside {
    width: 42%;
    background: linear-gradient(160deg, #1e3a5f 0%, #2563eb 55%, #0ea5e9 100%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.signup-wizard-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.signup-wizard-card {
    width: 100%;
    max-width: 720px;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    padding: 2rem;
}

.signup-logo { height: 56px; width: auto; }
.signup-logo-sm { height: 44px; width: auto; }
.signup-illustration { max-width: 320px; width: 80%; opacity: 0.95; }

.signup-steps-indicator {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.signup-steps-indicator span {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    background: #f1f5f9;
    color: #64748b;
}

.signup-steps-indicator span.active {
    background: #2563eb;
    color: #fff;
    font-weight: 600;
}

.signup-role-card {
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    background: #fff;
    text-align: right;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    cursor: pointer;
}

.signup-role-card:hover,
.signup-role-card.selected {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.signup-role-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.input-numeric-rtl { direction: ltr; text-align: left; }
.input-numeric-rtl:placeholder-shown { direction: rtl; text-align: right; }
.input-numeric-rtl::placeholder { text-align: right; }

@media (max-width: 991.98px) {
    .signup-wizard-card { padding: 1.25rem; }
}
