.piece {
    --piece-background-color: #e5c5ac;

    width: 300px;
    height: 100px;
    position: relative;
    //background: linear-gradient(165deg, rgba(154,213,236,1) 0%, rgba(154,213,236,1) 55%, rgba(0,0,0,1) 55%, rgba(0,0,0,1) 100%);
    border: solid black 1px;
    border-radius: 10px;

    &-title {
        font-family: 'Glacial Indifference Bold';
        margin-bottom: 10px;
    }

    &-form {
        margin: 10px 5px 10px 5px;

        input {
            width: 25px;
            border: none;
            border-radius: 10px;
        }

        &-select {
            margin-top: 15px;
            margin-left: 10px;
            width: 100%;

            select {
                border-radius: 10px;
                border: none;
                background-color: white;
                height: 25px;
                margin-left: 10px;
                width: 200px;
            }
        }
    }
}