
/* form buttons CSS */
.button-name {
    align-items: center;
    appearance: none;
    background-color: #0f6f87;
    border-radius: 0;
    border-width: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding: 10px 16px;
    position: relative;
    text-align: left;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow, transform;
    font-size: 1em;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.button-name:focus {
    /*box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;*/
}

.button-name:hover {
    /*box-shadow: rgba(45, 35, 66, 0.3) 0 4px 8px, rgba(45, 35, 66, 0.2) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;*/
    transform: translateY(-2px);
    color: #fff;
}

.button-name:active {
    box-shadow: #0f6f87 0 3px 7px inset;
    transform: translateY(2px);
}

/* end of form button CSS */
