.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: calc(100%);
    margin-top: 24px;
    margin-bottom: 24px;
    gap: 24px;
}

.row:last-child {
    margin-bottom: 0px;
}

.row:first-child {
    margin-top: 0px;
}

input,
select {
    font-family: sans-serif;
    color: var(--white);
    background-color: var(--bg);
    border: 1px solid var(--border);
    padding: 8px;
    border-radius: 8px;
    box-shadow: inset 0px 4px 6px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 150px;
}

textarea {
    font-family: sans-serif;
    color: var(--white);
    background-color: var(--bg);
    border: 1px solid var(--border);
    padding: 8px;
    border-radius: 8px;
    box-shadow: inset 0px 4px 6px rgba(0, 0, 0, 0.3);
    width: calc(100% - 24px);
    height: 18rem;
    resize: none;
    margin: 0 4px;
}

