header div {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

#step {
    height: fit-content;
    font-weight: bold;
    margin-bottom: 2vw;
}

#wall {
    width: 100%;
}

#next, #back {
    background-color: var(--accent-color);
    outline: none;
    border: none;
    color: white;
    width: 100%;
    font-size: 4.5vw;
    padding: 2vw 0;
    border-radius: 1vw;
}

#back {
    background-color: transparent;
    outline: none;
    border: .5vw solid var(--accent-color);
    color: var(--accent-color);
    width: 100%;
    font-size: 4.5vw;
    padding: 2vw 0;
    border-radius: 1vw;
    margin-top: 2vw;
}

input, textarea {
    background-color: var(--searchbar-background);
    border: none;
    width: 100%;
    border-radius: 1vw;
    padding: 1vw 2vw;
    outline: none;
    font-size: 4vw;
    resize: none;
}

input, textarea, #filter-grades {
    margin: 0 0 4vw;
}

#fields p:first-child {
    margin-top: 4vw;
}

#error {
    color: red;
    margin-bottom: 3vw;
}

#project-fields {
    display: flex;
    margin-bottom: 4vw;
    align-items: center;
}

#is-project {
    width: fit-content;
    margin: 0;
    aspect-ratio: 1;
    height: 6vw;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
}

#is-project:checked {
    background-color: var(--accent-color);
}

#is-project:checked::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/checked.png") no-repeat;
    background-size: 100%;
}

#project-fields label {
    margin-left: 3vw;
    width: 100%;
    height: fit-content;
    user-select: none;
}