.only-wizard-page {
    display: flex;
    width: 100%;
    justify-content: center;
}

.wizard {
    display: flex;
    flex-direction: column;
}

.wizard-header {
    background-color: var(--green-primary);
    color: var(--white);
    height: 2em;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 2em;
    padding-right: 1em;
}

.wizard-content {
    background-color: var(--white);
    color: var(--dark-blue);
    padding: 1em 2em;
}

.only-wizard-page a {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: var(--dark-blue);
}

.wizard-button {
    background-color: var(--green-primary);
    width: 40%;
    height: 2em;
    font-size: 16px;
    color: var(--white);
}

.wizard-button a {
    color: var(--white);
}

.wizard-header-content {
    flex-grow: 1;
}
