.success-modal {
    position: fixed;
    top: 0;
    right: -100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 100;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease-in-out;

    .content {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #1A1A1A;
        width: 100%;
        height: 50svh;

        button {
            position: absolute;
            top: 12px;
            right: 16px;
            margin: 0;
            width: auto;
            height: auto;
            background: transparent;
            border: none;

            img {
                width: 24px;
                height: 24px;
            }
        }

        h2 {
            margin-bottom: 8px;
            font-family: "Bebas Neue", sans-serif;
            font-size: 40px;
            text-align: center;
        }

        p {
            font-size: 14px;
            font-weight: 500;
            text-align: center;
        }
    }
}