.normal-button-flow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1.2em;
    gap: 0.5em;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-align: center;
    color: rgb(72, 5, 5);
    border-radius: 0.5em;
    cursor: pointer;
    border: 2px solid rgb(249, 92, 92);
}

.normal-button-flow:hover {
    background-color: rgb(255, 230, 230);
    text-decoration: none;
}

.normal-button-flow svg {
    width: 2em;
    height: 2em;
    fill: currentColor;
    color: inherit;
}

.normal-button-flow:hover svg {
    color: inherit;
}