.form-container {
    width: 600px;
    margin: 0 auto;
    position: relative;
}

.form-container form {
    border: dashed 2px var(--light-grey);
    border-radius: 10px;
    padding: 2em;
    display: flex;
    flex-direction: column;
    row-gap: 1em;
    font-family: var(--fn-alt);
    font-size: 0.8em;
}

.form-container form .poster {
    display: block;
    position: relative;
}

.form-container form .poster > img {
    display: block;
    width: 100%;
    border: solid 2px var(--grey);
}

.form-container form .row {
    display: flex;
    align-items: center;
}

.form-container form .row > span {
    width: 180px;
    flex-grow: 0;
    flex-shrink: 0;
}

.form-container form .row > input[type="text"],
.form-container form .row > input[type="email"],
.form-container form .row > input[type="tel"],
.form-container form .row > input[type="number"],
.form-container form .row > select {
    flex-grow: 1;
    width: 100%;
    border: solid 1px var(--grey);
    padding: 8px 12px;
}

.form-container form .row > input[type="checkbox"] {
    border: solid 1px var(--dark-grey);
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.form-container form .row.showprice {
    border: dashed 2px var(--light-grey);
    padding: 10px;
}

.form-container form .row.showprice .event-price {
    display: flex;
    flex-direction: column;
}

.form-container form .row.showprice .event-price .price {
    font-weight: 800;
}

.form-container form .row.showprice .event-price .note {
    font-size: 0.75em;
    color: var(--sea-green);
}

.form-container form button {
    height: 44px;
    background-color: var(--red);
    font-size: 0.9em;
    font-weight: 700;
    color: white;
    transition: all 0.2s ease-in-out;
    margin-top: 25px;
}

.form-container form button:hover {
    background-color: var(--dark-red);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.form-container form .notice {
    font-size: 0.75em;
    color: var(--dark-grey);
    text-align: center;
}

.form-container form .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.form-container form .logo > img {
    display: block;
    height: 20px;
}

@media all and (max-width: 767px) {
    .form-container {
        max-width: 100%;
        width: 100%;
    }
    .form-container form .row {
        flex-direction: column;
        align-items: flex-start;
    }
}