.form-control {
    display: flex;
    width: 100%;
    position: relative;
    gap: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
}

.form-control label {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    text-align: start;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 600;
    gap: 0.5rem;
    user-select: none;
}

.form-control input[type="text"] {
    width: 100%;
    outline: 0px;
    position: relative;
    appearance: none;
    text-align: start;
    font-size: 1rem;
    line-height: 1.25rem;
    padding-inline: 0.75rem;
    background: blue;
    border-width: 1px;
    /* border-color: var(--chakra-colors-border); */
    /* border-radius: var(--chakra-radii-l2); */
    /* height: var(--input-height); */
}

.readonly {
    background: #f5f5f5 !important;
    cursor: not-allowed;
}