:root {
    --wizard-bg: var(--mdui-color-surface);
    --wizard-fg: var(--mdui-color-on-surface);
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-family: Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--wizard-bg);
    color: var(--wizard-fg);
    overflow-x: hidden;
}

.wizard-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease-out;
    box-sizing: border-box;
    padding: 16px;
}

.step.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    position: relative;
}

.step.slide-out-left {
    transform: translateY(-10px);
}

.step.slide-out-right {
    transform: translateY(10px);
}

.step-header {
    flex: 0 0 auto;
    padding-top: 40px;
    padding-bottom: 24px;
    text-align: center;
}

.step-header h1 {
    margin: 16px 0 8px 0;
    font-weight: 300;
}

.step-header p {
    margin: 0;
    color: var(--mdui-color-on-surface-variant);
}

.logo-container {
    background-color: var(--mdui-color-primary-container);
    color: var(--mdui-color-on-primary-container);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-icon {
    font-size: 32px;
}

.step-content {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 0 16px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-footer {
    flex: 0 0 auto;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.full-width-btn {
    width: 100%;
    border-radius: 20px;
}

mdui-text-field,
mdui-select {
    width: 100%;
}

@media (min-width: 768px) {
    .step {
        padding: 40px;
    }

    .step-header {
        padding-top: 80px;
    }
}