.title-form {
    font-size: 18px;
    font-weight: 500;
    color: #0a0a0a;
    margin-bottom: 35px;
    padding-bottom: 10px;
    position: relative;
}
.title-form::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 2px solid var(--primary-color);
    width: 30px;
}
.card{
    padding: 40px 30px;
}
.action-box{
    padding: 20px 15px;
}
.product-name{
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: 100%;
}
