.button-component {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.button-component.square {
    background-color: #F4A484;

    padding: 10px 16px;
    gap: 10px;

    width: 114px;
    height: 50px;

    background: #F4A484;
    border-radius: 13px;

    /* Inside auto layout */
    flex: none;
    order: 2;
    flex-grow: 0;

}

.button-component.push {
    -webkit-appearance: none;
    appearance: none;
    -webkit-transition: -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease; 
    -moz-transition: -moz-transform 0.1s ease, -moz-box-shadow 0.1s ease; 
    -o-transition: -o-transform 0.1s ease, -o-box-shadow 0.1s ease; 
    -ms-transition: -ms-transform 0.1s ease, -ms-box-shadow 0.1s ease;
    -webkit-box-shadow: 0px 2px 0px 0px #DAE4ED; 
    -moz-box-shadow: 0px 2px 0px 0px #DAE4ED; 
    box-shadow: 0px 2px 0px 0px #DAE4ED;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.button-component.push:active {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; 
    transform: scale(0.95); 
}