.cubo-form {
    min-width: 340px;
}

.cubo-form .control input {
    width: 100%;
}

.cubo-form .field {
    margin-bottom: 16px;
}

.cubo-form .actions-toolbar.submit {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.cubo-form.min {
    width: 340px;
}

.cubo-form.small {
    width: 50%;
}

.cubo-form.max {
    width: 100%;
}

.cubo-form.left {
    margin: inherit;
}

.cubo-form.center {
    margin: 0 auto;
}

.cubo-form .actions-toolbar.submit button.small {
    width: 50%;
    min-width: fit-content;
}

.cubo-form .actions-toolbar.submit button.max {
    width: 100%;
}

.cubo-form .actions-toolbar.submit.left {
    justify-content: flex-start;
}

.cubo-form .actions-toolbar.submit.right {
    justify-content: flex-end;
}

.cubo-form .actions-toolbar.submit.center {
    justify-content: center;
}

form .input-disabled {
    cursor: not-allowed;
    pointer-events: none;
}