#app {
    max-width: 400px;
    margin: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: start;
    box-sizing: border-box;
}

.full-width-input {
    width: 100%;
    box-sizing: border-box;
}

.option-controls {
    display: grid;
    grid-template-columns: auto 1fr auto;
    min-height: 36px;
    width: 100%;
}

.option-controls svg {
    height: 36px;
    width: 36px;
    cursor: pointer;
}

.header {
    display: grid;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    width: 100%;
    grid-template-columns: auto 1fr 40px;
}

.header > *, 
.header > a {
    display: flex;
    align-items: center;
}
  
.header-logo {
    height: 50px;
    display: block;
}

.header-profile {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid #050643;

}

.progress-bar {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(auto, 1fr);
    overflow-x: auto;
    width: 100%;
    height: 6px;
    grid-gap: 8px;
    background-color: transparent;
}

.progress-bar .bar {
    background-color: #EFEFEF;
    border-radius: 2px
}

.progress-bar .active {
    background-color: #36376c;
    border-radius: 2px
}

.next-button {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-items: center;
    justify-content: center;
    height: 60px;
    column-gap: 16px;
    background-color: #36376c;
    color: white;
    cursor: pointer;

    border-radius: 26px;
    border: 2px solid #AFAFC4;
}

.next-button svg {
    height: 36px;
    width: 36px;
    transform: rotate(180deg);
}

button.next-button {
    width: 100%;
}