Buttons on Rich text

Hello. I have two buttons on shopify rich text dawn theme. I changed the layout to inline under section-rich-text.css. However the buttons have no space in between on desktop or mobile. Can someone help. Ideally i want space and the buttons to be the same width

@Rcard Here’s a template you can work off of and refine as needed:


        Sign In
        Account Registration
    

.button-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .button {
            background-color: #2280fb;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 16px;
            width: 200px; /* Set equal width */
            text-align: center;
            text-decoration: none;
        }

        .button:hover {
            background-color: #145dbd; /* Slightly darker blue on hover */
        }

Where am I using this code?

Hi @Rcard

Could you share your page link so I can check?