.wave-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 25vh;
    background: url('../img/illustrations/wavy-background-blue.svg') no-repeat top center;
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
}

body {
    background-color: var(--wisp-white);
    padding: 15px 15px 90px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
    width: 100%;
    gap: 30px;
    margin-bottom: 12vh;
}

header a {
    align-self: flex-start;
}

header h1 {
    color: var(--wisp-white);
}

.content {
    display: flex;
    flex-direction: column;
    gap: 10vh;
}

.information {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.information p {
    font-size: 1.25rem;
}

.information p span {
    font-weight: 700;
    font-size: 1.25rem;
}

.consent-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

form input {
    width: 26px;
    height: 26px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 3px solid;
    border-color: var(--wisp-blue);
}

form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

button {
    font-family: "Proxima Nova", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.25rem;
    padding: 15px 25px;
    border-radius: 52px;
    border: none;
    width: 80%;
    align-self: center;
    position: fixed;
    bottom: 40px;
}

.inactive {
    color: var(--wisp-dark-grey-600);
    background: var(--wisp-dark-400);
    pointer-events: none;
}

.active {
    color: var(--wisp-white);
    background: var(--wisp-blue);
    pointer-events: auto;
    cursor: pointer;
}

.active:hover {
    box-shadow: 0px 4px 8px 0px rgba(27, 27, 33, 0.35);
}

@media screen and (min-width: 480px) {
    .wave-background {
        height: 25vh;
    }

    header {
        max-width: 500px;
    }

    .content {
        gap: 5vh;
        margin-bottom: 0px;
    }

    .information {
        max-width: 500px;
    }

    h4 {
        max-width: 500px;
    }

    form {
        max-width: 500px;
    }

    button {
        max-width: 500px;
    }
}

@media screen and (min-width: 769px) {
    header {
        max-width: 500px;
    }
}

@media screen and (min-width: 1050px) {
    .wave-background {
        height: 30vh;
    }

    header {
        max-width: 500px;
        margin-bottom: 10vh;
    }
}