/* /modules/b2bregistration/views/css/front.css */

#b2b-wizard-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.wizard-progress .nav-pills .nav-link {
    border-radius: 0;
    border-bottom: 3px solid #e9ecef;
    color: #6c757d;
    font-weight: 600;
}

.wizard-progress .nav-pills .nav-link.active {
    background-color: transparent;
    color: #24b9d7;
    border-bottom: 3px solid #24b9d7;
}

.wizard-step {
    animation: fadeIn 0.5s;
}

.wizard-step h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #0c1d55;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-weight: 700;
}

.wizard-step h5 {
    margin-top: 20px;
    color: #0c1d55;
    font-size: 1.1em;
    font-weight: 600;
}


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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}