.h100 {
    height: 100%;
}
.d-flex {
    display: flex;
}
.flex-1 {
    flex: 1;
}
.gap-8 {
    gap: 8px;
}
.gap-20 {
    gap: 10px;
}
.my-8{
    margin-top: 8px;
    margin-bottom: 8px;
}
.xs-flex-col {
    flex-direction: column;
}
.justify-space-center {
    justify-content: center;
}
.align-item-center {
    align-items: center;
}

.inscriptionEvent {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    label {
        width: 100%;
    }
    input {
        display: block;
        width: 100%;
        height: calc(1.5em + 0.75rem + 2px);
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--neutral-dark);
        background-color: var(--white);
        background-clip: padding-box;
        border: none;
        border-radius: 0.25rem;
        transition:
            border-color 0.15s ease-in-out,
            box-shadow 0.15s ease-in-out;
    }
    textarea {
        display: block;
        width: 100%;
        height: calc(1.5em + 0.75rem + 2px);
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--neutral-dark);
        background-color: var(--white);
        background-clip: padding-box;
        border: none;
        border-radius: 0.25rem;
        transition:
            border-color 0.15s ease-in-out,
            box-shadow 0.15s ease-in-out;
    }
}
@media only screen and (min-width: 1024px) {
    .md-flex-row {
        flex-direction: row;
    }
    .md-flex-row-reverse {
        flex-direction: row-reverse;
    }
    .md-justify-space-bet {
        justify-content: space-between;
    }
    .inscriptionEvent{
        flex-direction: column;
    }
}
