.form-section {
    height: 90dvh;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/bg-imgs/bruno-hojlund-amad-unrelated.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.form-wrapper {
    display: flex;
}

.welcome {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    gap: 90px;
    padding: 20px;
    padding-right: 0;
    background-color: red;
    color: white;
    border-radius: 50px 0 0 50px;
    font-family: Agdasima, sans-serif;
}

.welcome * {
    padding-right: 20px;
}

.welcome h1 {
    font-size: 2.8rem;
}
.welcome p {
    font-size: 1.4rem;
}

.welcome .club {
    background-color: white;
    color: black;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 3rem;
    padding: 10px;
    padding-right: 50px;
    border-radius: 15px 0 0 15px;
    position: relative;
}

.welcome .rounder {
    position: absolute;
    width: 50px; 
    height: 50px;
    background-color: white;
    right: 0;
}
.up {
    top: -50px;
}
.down {
    bottom: -50px;
}
.inner.up {
    border-radius: 0 0 14px;
}
.inner.down {
    border-radius: 0 14px 0 0;
}
.rounder .inner {
    width: 50px;
    height: 100%;
    background-color: red;
}


form {
    min-width: 250px;
    padding: 20px;
    border-radius: 0 20px 20px 0;
    /* box-shadow: 2px 2px 5px hsla(0, 0%, 0%, .42); */
    background-color: white;
}

input {
    padding: 6px 8px;
    border: none;
    border-bottom: 1px solid black;
    background-color: transparent;
    width: 100%;
}
input:focus {
    border: none;
    outline:none;
    border-bottom: 2px solid black;
}

.check {
    width: fit-content;
}

textarea {
    width: 100%;
    height: 70px;
    border-radius: 4px;
    padding: 8px;
}
textarea:focus {
    outline: 0;
    border-bottom: 2px solid black;
}

.submit {
    cursor: pointer;
    border: 1px solid black;
    border-radius: 6px;
    background-color: hsl(0, 0%, 10%);
    color: #eee;
    font-size: 1em;
    padding: 12px 0;
    transition: background-color .2s linear;
}
.submit:hover {
    background-color: hsl(0, 0%, 18%);
}


@media screen and (max-width: 500px) {
    .form-section {
        height: 100dvh;
    }
    .form-wrapper {
        display: block;
    }
    .welcome * {
        padding: 0;
    }
    .welcome {
        gap: 0;
        padding: 12px;
        padding-bottom: 0;
        padding-right: 18px;
        border-radius: 20px 20px 0 0;
        flex-direction: row;
        justify-content: space-between;
    }
    .welcome h1 {
        font-size: 2rem;
    }
    .welcome p {
        font-size: 1.2rem;
    }
    .welcome-text {
        margin-bottom: 20px;
    }
    .welcome .club {
        font-size: 2rem;
        border-radius: 15px 15px 0 0;
        padding: 5px;
        padding-bottom: 0;   
    }
    .welcome .rounder {
        width: 25px;
        height: 25px;
    }
    .welcome .rounder.up {
        right: 81px;
        top: 18.5px;
    }
    .welcome .rounder.down {
        right: -18px;
        top: 18.5px;
        width: 18px;
    }
    .rounder .inner {
        background-color: red;
    }
    .rounder .inner.up {
        width: 25px;
        border-radius: 0 0 8px;
    }
    .rounder .inner.down {
        width: 18px;
        border-radius: 0 0 0 8px;
    }
    form {
        border-radius: 0 0 20px 20px;
        width: 90vw;
    }
}