body {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.authentication-wrapper {
    min-height: 100vh;
}

.auth-cover-bg {
    background: #f5f5f9;
    position: relative;
    height: 100%;
    padding: 40px;
}

.auth-illustration {
    max-width: 80%;
    height: auto;
}

.authentication-bg {
    background-color: #fff;
}

.brand-logo {
    max-width: 200px;
    margin-bottom: 2rem;
}

.form-wizard {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.wizard-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    line-height: 35px;
    margin: 0 auto 10px;
    position: relative;
    z-index: 1;
}

.wizard-step.active .step-number {
    background: var(--primary);
    color: #fff;
}

.step-title {
    font-size: 0.875rem;
    color: #6c757d;
}

.wizard-step.active .step-title {
    color: var(--primary);
}

.wizard-progress {
    position: absolute;
    top: 17px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
}

.wizard-progress-bar {
    position: absolute;
    height: 100%;
    background: var(--primary);
    transition: width 0.3s ease;
}

.form-step {
    display: none;
}

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

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

@media (max-width: 991.98px) {
    .authentication-bg {
        padding: 2rem !important;
    }

    .brand-logo {
        max-width: 180px;
        margin: 0 auto 2rem;
    }

    .wizard-step .step-title {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .authentication-bg {
        padding: 1.5rem !important;
    }

    .brand-logo {
        max-width: 150px;
    }

    .wizard-steps {
        flex-wrap: wrap;
    }

    .wizard-step {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
}