.columns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: none;
    gap: 0px 0px;
}
.column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
    border: 1px solid var(--secondary-color);
    gap: 0px 0px;
    padding: 5px;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin: 0 0;
    max-width: 850px;
}

.row label {
    display: inline-block;
    width: 580px;
    text-align: left;
    color: var(--tone-two);
    margin-bottom: 0;
}

.row input {
    background-color: var(--secondary-color);
    border: none;
    width: 80px;
    text-align: left;
}

